/*
 * Akari Weddings - Exact Match CSS
 * Replicating akariweddings.com design
 */

/* ========================================
   Google Fonts - Matching original
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Albert+Sans:wght@300;400;500;600&family=Antonio:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;700&family=Cormorant+Garamond:ital,wght@0,400;0,700;1,400&family=Bodoni+Moda:ital,wght@0,400;0,700;1,400;1,700&family=Outfit:wght@300;400;600;700&family=Lora:ital,wght@0,400;0,700;1,400&family=Inter:wght@400;700&display=swap');

/* ========================================
   CSS Variables
   ======================================== */
:root {
    --font-heading: 'Prata', serif;
    --font-body: 'Albert Sans', Helvetica, Arial, sans-serif;

    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-cream: #FEFDF6;
    --color-gray-dark: #424242;
    --color-gray: #666666;
    --color-gray-light: #f5f5f5;

    --transition-fast: 0.3s ease;
    --transition-slow: 0.7s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-black);
    background: var(--color-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section {
    padding: 100px 0;
}

/* ========================================
   Header - Fixed Transparent (2026 Minimalist)
   ======================================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 80px;
    background: transparent;
}

.header.scrolled {
    background: transparent;
    box-shadow: none;
}

/* Header always visible - removed hidden state */

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 60px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--color-white);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    padding: 8px 0;
    position: relative;
}

/* Animated underline effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.nav-flag {
    width: 22px;
    height: auto;
    border-radius: 2px;
}

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

.nav-link:hover {
    opacity: 1;
}

.nav-link.active {
    font-weight: 500;
}

/* Contact page nav - white on hero, handled by default styles */
/* Navigation is white by default, which works with the dark hero overlay */

.lang-switch {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-switch img {
    width: 16px;
    height: 11px;
}

/* Mobile Navigation - Sleek Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 12px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    z-index: 10001;
    width: 44px;
    height: 44px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.nav-toggle span:nth-child(1) {
    transform: translateY(0) rotate(0);
}

.nav-toggle span:nth-child(2) {
    transform: scaleX(1);
}

.nav-toggle span:nth-child(3) {
    transform: translateY(0) rotate(0);
}

/* Animated X when active */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    transform: scaleX(0);
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.header.scrolled .nav-toggle span {
    background: var(--color-white);
}

/* ========================================
   Hero Section - Full Screen Video
   ======================================== */
.hero {
    position: relative;
    height: 80vh;
    /* Better fit to screen */
    min-height: 450px;
    max-height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #000;
    background-size: cover;
    background-position: center 30%;
    /* Better for portraits/faces */
    background-repeat: no-repeat;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    padding: 20px;
    margin-top: 80px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    text-transform: none !important;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 0.3em rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    width: 100%;
    margin-top: 10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 20vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--color-white);
    animation: bounce 2.5s infinite ease-in-out;
    width: 40px;
    height: auto;
    display: flex;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator svg {
    width: 30px;
    height: auto;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(8px);
    }

    60% {
        transform: translateX(-50%) translateY(4px);
    }
}

/* ========================================
   Section Titles
   ======================================== */
.section-title-block {
    padding: 70px 0 70px;
    text-align: center;
    background: var(--color-white);
}

.main-title {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 6px;
    line-height: 2em;
    color: var(--color-black);
    margin: 0;
}

/* ========================================
   Wedding Gallery - Divi-matching responsive styles
   ======================================== */
.wedding-gallery {
    background: var(--color-white);
    padding: 0 0 80px;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-link {
    display: block;
    cursor: pointer;
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 1s ease;
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: background var(--transition-slow);
}

.gallery-title {
    font-family: 'Cardo', serif;
    font-size: 20px;
    font-weight: 400;
    color: transparent;
    transition: color var(--transition-slow);
    text-align: center;
    padding: 15px 10px;
    width: 90%;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .gallery-title {
    color: var(--color-white);
}

.about-section {
    background-image: url('/assets/images/about-bg.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: scroll;
    padding: 180px 0;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.about-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-white);
}

.about-tagline {
    font-family: 'Libre Baskerville', Georgia, serif !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    font-style: italic !important;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.about-heading {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 40px;
}

.about-text {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text strong {
    font-weight: 700;
}

/* About Content Section - White Background */
.about-content-section {
    background: var(--color-white);
    padding: 80px 0;
}

.about-content-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content-section .about-heading {
    color: var(--color-black);
    margin-bottom: 40px;
}

.about-content-section .about-text {
    color: var(--color-gray-dark);
}

/* ========================================
   Carousel Section
   ======================================== */
.carousel-section {
    background: var(--color-white);
    padding: 60px 0;
    overflow: hidden;
}

.carousel-wrapper {
    width: 100%;
    overflow: visible;
}

.carousel-track {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    /* 8 images * 5.5s (3s pause + 2.5s slide) = 44s */
    animation: stepped-scroll 44s ease-in-out infinite;
}

.carousel-slide {
    flex: 0 0 60vw;
    /* Smaller width reduces zoom feel */
    aspect-ratio: 3 / 2;
    max-height: 500px;
    border-radius: 0;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* seamless, no white blocks */
    display: block;
    margin: 0;
    padding: 0;
}

@keyframes stepped-scroll {

    /* 
       Starting from the middle set (Index 8) to ensure left buffer.
       Initial offset for centered image 9: 
       Start offset = 20vw (center first image) - 480vw (8 slides ahead) = -460vw
    */
    0%,
    6.81% {
        transform: translateX(-460vw);
    }

    12.5%,
    19.31% {
        transform: translateX(-520vw);
    }

    25%,
    31.81% {
        transform: translateX(-580vw);
    }

    37.5%,
    44.31% {
        transform: translateX(-640vw);
    }

    50%,
    56.81% {
        transform: translateX(-700vw);
    }

    62.5%,
    69.31% {
        transform: translateX(-760vw);
    }

    75%,
    81.81% {
        transform: translateX(-820vw);
    }

    87.5%,
    94.31% {
        transform: translateX(-880vw);
    }

    /* Loop point: Back to the middle set's first image */
    100% {
        transform: translateX(-940vw);
    }
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    background: var(--color-white);
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    line-height: 1.4em;
    margin-bottom: 15px;
}

.service-desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 2em;
}

.service-icon {
    font-size: 29px;
    color: #262626;
}

/* ========================================
   Pure Minimalist Contact - Shared Style
   ======================================== */
.pure-contact {
    max-width: 600px;
    margin: 0 auto;
    padding: 100px 30px 100px;
    text-align: center;
    font-family: 'Albert Sans', Helvetica, sans-serif;
    background: #fff;
}

.pure-contact .line {
    display: block;
    width: 40px;
    height: 1px;
    background: #ccc;
    margin: 0 auto 25px;
}

.pure-contact .divider {
    display: block;
    width: 40px;
    height: 1px;
    background: #e0e0e0;
    margin: 50px auto;
}

.pure-header h2 {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 5px;
    color: #000;
    margin: 0;
}

.pure-intro {
    font-size: 15px;
    font-weight: 300;
    line-height: 2;
    color: #555;
    margin: 40px 0;
}

.pure-form {
    margin: 40px 0;
}

.pure-form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

.pure-form input,
.pure-form textarea {
    width: 100%;
    padding: 12px 0;
    font-family: inherit;
    font-size: 13px;
    font-weight: 300;
    color: #333;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    transition: border-color 0.3s;
}

.pure-form input::placeholder,
.pure-form textarea::placeholder {
    color: #aaa;
}

.pure-form input:focus,
.pure-form textarea:focus {
    border-bottom-color: #000;
}

.pure-form textarea {
    min-height: 100px;
    resize: vertical;
    margin-bottom: 20px;
}

.pure-form button {
    padding: 14px 45px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #000;
    background: transparent;
    border: 1px solid #000;
    cursor: pointer;
    transition: all 0.3s;
}

.pure-form button:hover {
    background: #000;
    color: #fff;
}

.pure-section {
    padding: 20px 0;
}

.pure-section h2 {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #000;
    margin-bottom: 25px;
}

.pure-section h3 {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #000;
    margin-bottom: 20px;
}

.pure-section p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    color: #666;
    margin-bottom: 12px;
}

.pure-section .number {
    display: block;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #bbb;
    margin-bottom: 15px;
}

.pure-footer {
    padding-top: 30px;
}

.pure-footer .label {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 8px;
}

.pure-footer .value {
    font-size: 14px;
    font-weight: 300;
    color: #555;
    margin-bottom: 30px;
}

.pure-footer .email {
    font-size: 13px;
    font-weight: 300;
    color: #999;
    margin-bottom: 25px;
}

.pure-footer .email a {
    color: #000;
    text-decoration: none;
}

.pure-footer .social {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.pure-footer .social a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.pure-footer .social a:hover {
    color: #000;
}

.pure-footer .copy {
    font-size: 10px;
    letter-spacing: 2px;
    color: #bbb;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-8px);
    }

    40% {
        transform: translateX(8px);
    }

    60% {
        transform: translateX(-6px);
    }

    80% {
        transform: translateX(6px);
    }
}

.shake {
    animation: shake 0.4s ease-in-out;
}

.date-invalid {
    border-bottom-color: #c00 !important;
}

@media (max-width: 600px) {
    .pure-contact {
        padding: 80px 25px 60px;
    }

    .pure-form .row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pure-form input {
        margin-bottom: 15px;
    }
}

.contact-split-section .btn-submit {
    background: transparent;
    border: 1px solid var(--color-black);
    color: var(--color-black);
    margin-top: 20px;
}

.contact-split-section .btn-submit:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* ========================================
   Contact Section (legacy black background)
   ======================================== */
.contact-section {
    background: var(--color-black);
    color: var(--color-white);
    padding: 100px 0;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-family: var(--font-heading);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-left: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--color-black);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    outline: none;
    transition: border-color var(--transition-fast);
}

.contact-section .form-group input,
.contact-section .form-group textarea {
    border-bottom-color: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #c9a87c;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    align-self: flex-end;
    padding: 20px 24px;
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-submit:hover {
    background: var(--color-white);
    color: var(--color-black);
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    padding: 80px 0 40px;
    background: #fff;
    text-align: center;
    font-family: 'Albert Sans', Helvetica, sans-serif;
    border-top: 1px solid #f9f9f9;
}

.footer-minimal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.footer-minimal-col h5 {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-minimal-col p,
.footer-minimal-col a,
.copy-feedback-trigger {
    font-size: 13px;
    font-weight: 300;
    color: #888;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s;
}

.footer-minimal-col a:hover {
    color: #000;
}

.footer-instagram {
    margin: 40px 0 30px;
}

.footer-instagram a {
    display: inline-block;
    color: #000;
    transition: transform 0.3s;
}

.footer-instagram a:hover {
    transform: scale(1.1);
}

.footer-instagram svg {
    width: 24px;
    height: 24px;
}

.footer-bottom-info {
    font-size: 10px;
    letter-spacing: 2px;
    color: #bbb;
    text-transform: uppercase;
    line-height: 2;
}

/* Copy feedback for email */
.copy-feedback-container {
    position: relative;
    display: inline-block;
}

.copy-feedback-trigger {
    cursor: pointer;
    transition: color 0.3s;
}

.copy-tooltip {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    letter-spacing: 1px;
    color: #000;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.copy-feedback-container:hover .copy-tooltip {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-minimal-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* ========================================
   About Page Styles
   ======================================== */
.page-hero {
    height: 590px !important;
    min-height: 590px !important;
    max-height: 590px !important;
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

/* Ensure editor toolbar doesn't overlap the site header */
body.akari-edit-mode {
    padding-top: 50px !important;
}

body.akari-edit-mode .header {
    top: 50px !important;
}

body.akari-edit-mode .header.scrolled {
    top: 50px !important;
}


.page-hero-title {
    position: relative;
    z-index: 10;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    text-align: center;
}

/* Standard hero media behavior - Cover area, no gaps */
.page-hero .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .hero-video-wrapper {
    background-size: cover;
    background-position: center;
}





.about-page-section {
    padding: 100px 0;
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image .image-frame {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-content .about-text-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-gray-dark);
}

.about-content .about-text-content p {
    margin-bottom: 20px;
}

.about-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: normal;
    color: #c9a87c;
    margin: 30px 0 20px;
}

.about-cta {
    font-style: normal;
    color: var(--color-gray);
}

/* ========================================
   404 Page
   ======================================== */
.error-page {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--color-white);
    text-align: center;
}

.error-code {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 400;
    color: #c9a87c;
    line-height: 1;
    margin-bottom: 20px;
}

.error-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.error-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: #c9a87c;
    color: var(--color-black);
    font-weight: 500;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary:hover {
    background: #b8976b;
}

/* ========================================
   Video Lightbox
   ======================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    background: #000;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-video,
.lightbox-iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 2px;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 980px) {
    .about-section {
        padding: 130px 0;
        background-attachment: scroll;
        margin-top: 60px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .service-item {
        padding-bottom: 30px;
    }

    .service-center {
        display: none;
    }

    .gallery-title {
        color: var(--color-white);
    }

    .gallery-overlay {
        background: rgba(0, 0, 0, 0.3);
    }

    /* Tablet gallery - 2-column layout for better space utilization */
    .wedding-gallery {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box;
        background: var(--color-black) !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px !important;
        margin: 0 !important;
        padding: 0 !important;
        background: var(--color-black) !important;
    }

    .gallery-item {
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        background: var(--color-black) !important;
        box-sizing: border-box;
    }

    .gallery-link {
        display: block;
        margin: 0;
        padding: 0;
        line-height: 0;
        border: none !important;
    }

    .gallery-image-wrapper {
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        line-height: 0;
        background: var(--color-black) !important;
    }

    .gallery-image-wrapper img {
        display: block;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        width: 100%;
    }

    /* Tablet - Section title padding */
    .section-title-block {
        padding: 60px 0 60px;
    }

    .main-title {
        font-size: 14px;
        letter-spacing: 4px;
    }

    /* Tablet - Video full width edge-to-edge */
    .hero-video-wrapper,
    .hero-video {
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
    }

    video,
    .gallery-item video,
    .gallery-image-wrapper video {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        display: block;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 75vh;
        background: #f2f2f2;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        transition: right var(--transition-fast);
    }

    .nav-menu.active {
        right: 0;
    }

    /* Enhanced touch targets for mobile nav links */
    .nav-menu .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-menu .nav-link {
        font-size: 18px;
        color: var(--color-black);
        display: block;
        padding: 14px 30px;
        min-height: 48px;
        line-height: 1.2;
        transition: background 0.2s ease, transform 0.15s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-menu .nav-link:active {
        background: rgba(0, 0, 0, 0.05);
        transform: scale(0.98);
    }

    /* Enhanced hamburger touch area */
    .nav-toggle {
        display: flex;
        width: 48px;
        height: 48px;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-toggle:active span {
        opacity: 0.7;
    }

    .hero-content {
        padding: 60% 20px;
    }

    /* Phone gallery - Full width edge-to-edge */
    .wedding-gallery {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box;
        background: var(--color-black) !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        background: var(--color-black) !important;
    }

    .gallery-item {
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        background: var(--color-black) !important;
        box-sizing: border-box;
    }

    .gallery-link {
        display: block;
        margin: 0;
        padding: 0;
        line-height: 0;
        border: none !important;
    }

    .gallery-image-wrapper {
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        line-height: 0;
        background: var(--color-black) !important;
    }

    .gallery-image-wrapper img {
        display: block;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        width: 100%;
    }

    .about-section {
        padding: 80px 0;
        background-attachment: scroll;
        margin-top: 60px;
    }

    .about-tagline {
        font-size: 16px;
    }

    .about-text {
        font-size: 16px;
    }

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

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

    /* Phone - Section title spacing */
    .section-title-block {
        padding: 60px 0 60px;
    }

    .main-title {
        font-size: 12px;
        letter-spacing: 3px;
        line-height: 1.8em;
    }

    /* Phone - Video full width edge-to-edge */
    .hero-video-wrapper,
    .hero-video {
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
    }

    video,
    .gallery-item video,
    .gallery-image-wrapper video {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        display: block;
    }
}

/* Start Responsive Text Updates */
/* Start Responsive Text Updates */
/* APPLY GLOBALLY TO ALL HERO TITLES (.hero-title + .contact-hero-title) */
.contact-hero-title,
.hero-title {
    /* DESKTOP: Massive but Controlled */
    /* Smoother curve: clamp(100px, 15vw, 220px) */
    font-size: clamp(100px, 15vw, 220px) !important;
    letter-spacing: 0.1em !important;
    white-space: nowrap !important;
    width: auto !important;
    max-width: none !important;
    /* Allow overlay logic */
    line-height: 1.0 !important;

    /* REMOVED: All positioning hacks (left/transform).
       Reason: They conflict with Draggable JS logic. 
       Centering is handled by parent .hero-content { text-align: center } */

    mix-blend-mode: overlay;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    opacity: 0.95;

    /* Ensure font weights match */
    font-weight: 900 !important;
    font-family: 'Bodoni Moda', serif !important;
    /* Ensure Bodoni is enforced if not already */
}

/* End Responsive Text Updates */

/* Tablet Override (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {

    .contact-hero-title,
    .hero-title {
        /* Tablet Max at 1024px should match Desktop Min (~150px) */
        /* Range: 768px (92px) -> 1024px (122px) + clamp max 140px */
        font-size: clamp(60px, 12vw, 140px) !important;
        letter-spacing: 0.1em !important;
        mix-blend-mode: overlay;
        white-space: nowrap !important;
    }
}

/* Mobile Override (< 768px) */
@media (max-width: 768px) {

    .contact-hero-title,
    .hero-title {
        /* PROPERLY MOBILE SIZED */
        font-size: clamp(30px, 12vw, 65px) !important;
        letter-spacing: 3px !important;
        line-height: 1.1 !important;
    }
}

/* ========================================
   Notification Toast
   ======================================== */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    background: #c9a87c;
    color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 9999;
    animation: slideIn 0.3s ease;
}

.notification--error {
    background: #dc3545;
    color: #fff;
}

.notification__close {
    background: none;
    border: none;
    color: inherit;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ========================================
   Utility
   ======================================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ========================================
   Contact Page - Animated Design
   ======================================== */

/* Hero with Ken Burns zoom */
.contact-hero-animated {
    position: relative;
    height: 75vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: kenBurns 20s ease infinite alternate;
}

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

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

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

.hero-content-animated {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-title-typewriter {
    font-family: var(--font-body);
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--color-white);
}

.typewriter-cursor {
    animation: blink 1s infinite;
    margin-left: 5px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Our Story Section */
.our-story-section {
    padding: 120px 0;
    background: var(--color-white);
}

.story-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.story-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-gray);
    display: block;
    margin-bottom: 20px;
}

.story-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 400;
    font-style: normal;
    color: var(--color-black);
    margin-bottom: 60px;
}

.story-title .ampersand {
    font-style: normal;
    color: var(--color-gray);
}

.story-block {
    margin-bottom: 50px;
}

.story-text-large {
    font-family: var(--font-body);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-black);
}

.story-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 50px 0;
}

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

.contrast-label {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-gray);
    margin-bottom: 10px;
}

.contrast-value {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    font-style: normal;
    color: var(--color-black);
}

.contrast-icon {
    font-size: 40px;
    color: var(--color-black);
}

.story-content p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 15px;
}

.story-content em {
    font-family: var(--font-heading);
    font-style: normal;
    font-size: 20px;
    color: var(--color-black);
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background: var(--color-cream);
}

.why-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.why-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    font-style: normal;
    color: var(--color-black);
    margin-bottom: 30px;
}

.why-content p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 20px;
}

.love-word {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.love-letter {
    font-family: var(--font-heading);
    font-size: clamp(48px, 10vw, 100px);
    font-weight: 400;
    color: var(--color-black);
    animation: lovePulse 2s ease infinite;
}

.love-letter:nth-child(1) {
    animation-delay: 0s;
}

.love-letter:nth-child(2) {
    animation-delay: 0.1s;
}

.love-letter:nth-child(3) {
    animation-delay: 0.2s;
}

.love-letter:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes lovePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Form Section */
.contact-form-section {
    padding: 100px 0;
    background: var(--color-white);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-form-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    font-style: normal;
    color: var(--color-black);
    margin-bottom: 15px;
}

.contact-form-header p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--color-gray);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-form-animated .form-field {
    margin-bottom: 25px;
}

.contact-form-animated input,
.contact-form-animated textarea {
    width: 100%;
    padding: 20px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--color-black);
    background: var(--color-gray-light);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    outline: none;
}

.contact-form-animated input:focus,
.contact-form-animated textarea:focus {
    background: var(--color-white);
    border-color: var(--color-black);
}

.contact-form-animated input::placeholder,
.contact-form-animated textarea::placeholder {
    color: var(--color-gray);
}

.contact-form-animated textarea {
    resize: vertical;
    min-height: 150px;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-animated {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--color-white);
    background: var(--color-black);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-animated:hover {
    gap: 25px;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-animated:hover .btn-arrow {
    transform: translateX(5px);
}

/* Contact Bar */
.contact-bar {
    padding: 60px 0;
    background: var(--color-black);
}

.contact-bar-content {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    padding: 0 40px;
}

.contact-bar-item {
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.bar-label {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.bar-value {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-white);
    transition: opacity 0.3s ease;
}

a.contact-bar-item:hover .bar-value {
    opacity: 0.7;
}

/* Fade-in animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 767px) {
    .story-grid {
        gap: 40px;
    }

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

    .contact-bar-content {
        gap: 40px;
    }

    .btn-animated {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   Contact Page - Stepped Storytelling

/* Individual Step */
.contact-step {
    padding: 80px 0;
    background: var(--color-white);
}

.contact-step-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
}

.contact-step-reverse .contact-step-container {
    direction: rtl;
}

.contact-step-reverse .contact-step-container>* {
    direction: ltr;
}

.contact-step-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.contact-step:hover .contact-step-image img {
    filter: grayscale(0%);
}

.contact-step-content {
    padding: 20px 0;
}

.step-number {
    font-family: var(--font-heading);
    font-size: clamp(60px, 10vw, 100px);
    font-weight: 400;
    font-style: normal;
    color: var(--color-gray-light);
    line-height: 0.8;
    display: block;
    margin-bottom: 10px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    font-style: normal;
    color: var(--color-black);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.step-subtitle {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 25px;
}

.contact-step-content p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 15px;
}

/* Ready Section */
.contact-ready {
    padding: 100px 0;
    background: var(--color-white);
}

.contact-ready-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
}

.contact-ready-image img {
    width: 100%;
    height: auto;
}

.ready-title-serif {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 50px);
    font-weight: 400;
    font-style: normal;
    color: var(--color-black);
    margin-bottom: 0;
    line-height: 1;
}

.ready-title-large {
    font-family: var(--font-body);
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--color-black);
    margin-bottom: 30px;
    line-height: 1;
}

.contact-ready-content p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 20px;
}

.ready-intro {
    font-size: 17px !important;
    font-weight: 400 !important;
}

.ready-email-link {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--color-black);
    text-decoration: none;
    border-bottom: 1px solid var(--color-black);
    padding-bottom: 3px;
    margin-top: 10px;
    transition: opacity 0.3s ease;
}

.ready-email-link:hover {
    opacity: 0.6;
}

/* Form Section */
.contact-form-section {
    padding: 80px 0 100px;
    background: var(--color-gray-light);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-form-elegant .form-field {
    margin-bottom: 30px;
}

.contact-form-elegant label {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 10px;
}

.contact-form-elegant input,
.contact-form-elegant textarea {
    width: 100%;
    padding: 15px 0;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--color-black);
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    transition: border-color 0.3s ease;
    outline: none;
}

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

.contact-form-elegant textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.btn-elegant {
    display: inline-block;
    padding: 18px 60px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white);
    background: var(--color-black);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-elegant:hover {
    background: var(--color-gray-dark);
}

/* Social Section */
.contact-social-section {
    padding: 60px 0;
    background: var(--color-white);
    text-align: center;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.contact-social-links a {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--color-black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-social-links a:hover {
    opacity: 0.6;
}

.social-divider {
    color: var(--color-gray);
}

/* ========================================
   Contact Page - Visual Design
   ======================================== */

/* Full-Screen Hero */
.contact-hero-full {
    position: relative;
    height: 75vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
}

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

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

.hero-content-centered {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
}

.hero-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(48px, 10vw, 100px);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 2px;
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: var(--color-white);
}

.scroll-hint span {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        height: 60px;
    }

    50% {
        opacity: 0.5;
        height: 40px;
    }
}

/* Content Block - Centered Text */
.content-block {
    padding: 120px 0;
    background: var(--color-white);
}

.content-block-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.lead-text {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    font-style: normal;
    color: var(--color-black);
    margin-bottom: 40px;
    line-height: 1.4;
}

.text-large-centered p {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 20px;
}

/* Full-Width Image Break */
.image-break {
    width: 100%;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
}

.image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.5s ease;
}

.image-break:hover img {
    filter: grayscale(0%);
}

/* Split Sections - Image + Text */
.split-section {
    padding: 100px 0;
    background: var(--color-white);
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    align-items: center;
}

.split-reverse .split-container {
    direction: rtl;
}

.split-reverse .split-container>* {
    direction: ltr;
}

.split-image img {
    width: 100%;
    height: auto;
    filter: grayscale(40%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.split-section:hover .split-image img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.split-content {
    padding: 20px 0;
}

.split-heading {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-black);
    margin-bottom: 30px;
}

.split-content p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 20px;
}

.poetic-block {
    margin: 30px 0;
    padding-left: 20px;
    border-left: 2px solid var(--color-gray-light);
}

.poetic-block em {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    font-style: normal;
    color: var(--color-black);
    line-height: 2;
}

/* Quote Section with Background */
.quote-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.quote-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.quote-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 400;
    font-style: normal;
    color: var(--color-white);
    line-height: 1.5;
}

/* About Section Full */
.about-section-full {
    padding: 120px 0;
    background: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    align-items: center;
}

.about-image-col img {
    width: 100%;
    height: auto;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.about-section-full:hover .about-image-col img {
    filter: grayscale(0%);
}

.about-heading {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-black);
    margin-bottom: 25px;
}

.about-intro {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    font-style: normal;
    color: var(--color-black);
    margin-bottom: 25px;
    line-height: 1.4;
}

.about-text-col p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 18px;
}

.about-yin-yang {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px 0 20px;
    padding: 30px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.yin-yang-item {
    text-align: center;
}

.yin-yang-item .contrast-label {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-gray);
    margin-bottom: 5px;
}

.yin-yang-item .contrast-sign {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-style: normal;
    color: var(--color-black);
}

.yin-yang-item .contrast-trait {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: var(--color-gray);
    margin-top: 3px;
}

.yin-yang-symbol {
    font-size: 32px;
    color: var(--color-black);
}

.about-tagline {
    font-family: var(--font-body);
    font-size: 14px;
    font-style: normal;
    color: var(--color-gray);
}

/* Form Section with Side Image */
.form-section-visual {
    background: var(--color-white);
}

.form-visual-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 75vh;
}

.form-image-side {
    position: relative;
    overflow: hidden;
}

.form-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.form-content-side {
    padding: 100px 80px;
    background: var(--color-gray-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-heading {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-black);
    margin-bottom: 15px;
}

.form-intro {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--color-gray);
    margin-bottom: 40px;
}

/* Dark Footer */
.contact-footer-dark {
    padding: 100px 0 60px;
    background: var(--color-black);
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--color-white);
    margin-bottom: 40px;
}

.footer-details p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-email {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 3px;
    transition: border-color 0.3s ease;
}

.footer-email:hover {
    border-color: var(--color-white);
}

.footer-social {
    margin: 50px 0 40px;
}

.footer-social a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-social span {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

/* Responsive Visual Contact */
@media (max-width: 980px) {

    .split-container,
    .about-grid,
    .form-visual-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .split-reverse .split-container {
        direction: ltr;
    }

    .split-container {
        padding: 0 40px;
    }

    .about-grid {
        padding: 0 40px;
    }

    .form-image-side {
        height: 50vh;
        min-height: 300px;
    }

    .form-content-side {
        padding: 60px 40px;
    }

    .about-yin-yang {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .contact-hero-full {
        min-height: 500px;
    }

    .content-block {
        padding: 80px 0;
    }

    .content-block-inner {
        padding: 0 25px;
    }

    .split-section,
    .about-section-full {
        padding: 60px 0;
    }

    .split-container,
    .about-grid {
        padding: 0 25px;
        gap: 30px;
    }

    .image-break {
        height: 40vh;
        min-height: 250px;
    }

    .quote-section {
        height: 50vh;
        min-height: 300px;
    }

    .form-content-side {
        padding: 50px 25px;
    }

    .about-yin-yang {
        flex-direction: column;
        gap: 20px;
    }

    .yin-yang-symbol {
        order: -1;
    }
}

/* Welcome Section */
.contact-welcome {
    padding: 140px 0 100px;
    background: var(--color-white);
    text-align: center;
}

.contact-welcome-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.welcome-title {
    font-family: var(--font-body);
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 1.8;
    color: var(--color-black);
    margin-bottom: 50px;
}

.welcome-content p {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 25px;
}

/* Content Sections */
.contact-section {
    padding: 80px 0;
    background: var(--color-white);
}

.contact-section-alt {
    background: var(--color-cream);
}

.contact-section-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.section-heading {
    font-family: var(--font-body);
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--color-black);
    margin-bottom: 40px;
}

.section-content p {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 25px;
}

.poetic-lines {
    margin: 35px 0;
}

.poetic-lines em {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 22px);
    font-style: normal;
    color: var(--color-black);
    display: block;
    line-height: 2;
}

/* Form Section */
.contact-form-section {
    padding: 100px 0;
    background: var(--color-gray-light);
}

.form-heading {
    font-family: var(--font-body);
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 60px;
}

/* About Us Section */
.contact-about {
    padding: 100px 0;
    background: var(--color-white);
}

.contact-about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    filter: grayscale(30%);
    transition: filter 0.5s ease;
}

.contact-about:hover .about-image img {
    filter: grayscale(0%);
}

.about-content .section-heading {
    text-align: left;
    margin-bottom: 30px;
}

.about-content p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 20px;
}

.about-details {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.about-contrast {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.contrast-item {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-gray-dark);
}

.contrast-item em {
    font-family: var(--font-heading);
    font-style: normal;
    color: var(--color-black);
}

.contrast-divider {
    font-size: 20px;
    color: var(--color-gray);
}

.about-year {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-gray);
    margin-top: 15px;
    font-style: normal;
}

/* Ready Footer Section */
.contact-ready-footer {
    padding: 100px 0 60px;
    background: var(--color-black);
    text-align: center;
    color: var(--color-white);
}

.ready-footer-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 40px;
}

.ready-heading {
    font-family: var(--font-body);
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--color-white);
    margin-bottom: 40px;
}

.ready-info p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.ready-email a {
    color: var(--color-white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: border-color 0.3s ease;
}

.ready-email a:hover {
    border-color: var(--color-white);
}

.ready-social {
    margin: 50px 0 40px;
}

.ready-social a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.ready-social a:hover {
    opacity: 0.7;
}

.social-dot {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.4);
}

.ready-footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-location {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive for new contact sections */
@media (max-width: 980px) {
    .contact-about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-content .section-heading {
        text-align: center;
    }

    .about-content p {
        text-align: center;
    }

    .about-contrast {
        justify-content: center;
    }

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

@media (max-width: 767px) {
    .contact-welcome {
        padding: 120px 0 60px;
    }

    .contact-welcome-container,
    .contact-section-container,
    .ready-footer-container {
        padding: 0 25px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-about,
    .contact-ready-footer {
        padding: 60px 0 40px;
    }

    .contact-about-container {
        padding: 0 25px;
    }
}

/* Responsive */
@media (max-width: 980px) {

    .contact-step-container,
    .contact-ready-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-step-reverse .contact-step-container {
        direction: ltr;
    }

    .step-number {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .contact-step {
        padding: 50px 0;
    }

    .contact-step-container,
    .contact-ready-container {
        padding: 0 20px;
    }

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

    .btn-elegant {
        width: 100%;
        text-align: center;
    }
}

@media print {

    .header,
    .hero-video,
    .scroll-indicator,
    .contact-form {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }
}

/* Contact Hero */
.contact-hero {
    position: relative;
    height: 75vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 20px;
}

.contact-hero-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* =========================================
   CONTACT PAGE: THE "AKARI POLISH" (Final Perfected)
   ========================================= */

/* Use a distinct class to avoid conflicts with other pages */
.contact-hero-title {
    font-family: 'Schibsted Grotesk', sans-serif;
    font-weight: 900;
    /* Extra bold for impact */
    text-transform: uppercase;
    color: #fff;
    line-height: 0.85;
    /* Tighter line height for massive text */
    margin: 0;
    padding: 0;
    text-align: center;
    position: relative;
    z-index: 10;

    /* FLUID TYPOGRAPHY: Massive responsive sizing */
    font-size: clamp(4rem, 18vw, 22rem);
    white-space: nowrap;
    /* Never wrap */

    /* Cinematic Blend */
    mix-blend-mode: overlay;
    opacity: 0.95;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

    /* Interaction */
    cursor: grab;
    transition: transform 0.1s linear, font-family 0.3s ease;
    /* Smooth drag, smooth font swap */

    /* Ensure it handles click events for editing */
    pointer-events: auto;
}

/* Perfect Center Snap Effect */
.akari-perfect-center {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.9)) brightness(1.1);
    z-index: 9999 !important;
    transition: filter 0.2s ease;
}

/* Tablet: Slightly tamer but still huge */
@media (max-width: 1024px) {
    .contact-hero-title {
        font-size: clamp(3rem, 16vw, 15rem);
    }
}

/* Mobile: Ensure it fits but remains impactful */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: clamp(2.5rem, 14vw, 8rem);
        white-space: normal;
        /* Allow wrap if absolutely necessary on tiny screens */
        line-height: 0.9;
        mix-blend-mode: normal;
        /* Better visibility on mobile backgrounds */
        color: #f7f5f2;
        /* Soft white */
    }
}

/* -----------------------------------------------------------
   THE EDITORIAL FORM LAYOUT ("Vogue" Style)
   ----------------------------------------------------------- */

/* The Layout Container */
.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 75vh;
    width: 100%;
}

@media (max-width: 900px) {
    .contact-split-layout {
        grid-template-columns: 1fr;
        /* Stack on mobile/tablet */
    }
}

/* LEFT COLUMN: Content & Form */
.contact-content {
    background-color: #fcfbf9;
    /* Warm editorial white */
    padding: 8vw 6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* The Headline: "We'd love to hear..." */
.editorial-headline {
    font-family: 'Libre Baskerville', serif;
    /* Elegant serif */
    font-size: clamp(2rem, 4vw, 4.5rem);
    line-height: 1.1;
    color: #111;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    /* Tight editorial tracking */
}

.editorial-subhead {
    font-family: 'Schibsted Grotesk', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    /* Wide spacing for uppercase constraints */
    font-weight: 500;
}

/* The Minimalist Form */
.contact-editorial-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    /* Spacious vertical rhythm */
}

/* Invisible Inputs (Bottom Border Only) */
.editorial-input-group {
    position: relative;
    margin-bottom: 0.5rem;
}

.editorial-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #d0d0d0;
    /* Subtle grey line */
    padding: 1rem 0;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.25rem;
    color: #000;
    outline: none;
    border-radius: 0;
    /* Remove iOS rounded corners */
    transition: border-color 0.4s ease;
}

.editorial-input::placeholder {
    color: #999;
    font-family: 'Schibsted Grotesk', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

.editorial-input:focus {
    border-bottom: 1px solid #000;
    /* Sharp black on focus */
}

/* The "SEND" Button (High Fashion) */
.btn-editorial-submit {
    align-self: flex-start;
    background-color: #000;
    color: #fff;
    font-family: 'Schibsted Grotesk', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    /* Wide tracking */
    padding: 1.2rem 3rem;
    border: 1px solid #000;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    /* "Silky" ease */
}

/* Invert Hover Effect */
.btn-editorial-submit:hover {
    background-color: #fff;
    color: #000;
    padding: 1.2rem 3.5rem;
    /* Subtle expansion */
}

/* RIGHT COLUMN: The Video Stack */
.contact-videos {
    background: #000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.contact-video-stack {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.video-stack-item {
    flex: 1;
    /* Equal height */
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle separator */
}

.video-stack-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    /* Moodier default state */
    transition: opacity 0.6s ease, transform 8s ease;
    /* Slow zoom & fade */
}

.video-stack-item:hover video {
    opacity: 1;
    transform: scale(1.05);
    /* Slow cinematic zoom */
}

.contact-footer-info {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.contact-footer-info p {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-footer-info a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border 0.3s;
}

.contact-footer-info a:hover {
    border-bottom: 1px solid #000;
}

/* Video Column Polish */
.contact-videos {
    flex: 1;
    background: #000;
    min-width: 400px;
    position: relative;
    overflow: hidden;
    /* No padding, full bleed */
}

.video-stack {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.video-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    /* Ensure they have presence */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle separator */
}

.video-card:last-child {
    border-bottom: none;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    /* Slightly moody */
    transition: opacity 0.5s ease;
}

.video-card:hover video {
    opacity: 1;
    /* Brighten on hover */
}

/* Responsive - Stack layout on small screens */
@media (max-width: 900px) {
    .contact-split {
        flex-direction: column;
    }

    .contact-content {
        order: 2;
        /* Content below videos on mobile? Or above? Let's keep content top usually, or side-by-side */
    }

    .contact-videos {
        order: 1;
        /* Videos on top visually if we want "Hero" feel, or bottom. */
        height: 50vh;
        /* Fixed height on mobile */
    }

    .contact-content {
        padding: 60px 20px;
        order: 2;
    }
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: var(--color-black);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Contact Page Responsive */
@media (max-width: 980px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 40px;
    }

    .contact-form-column {
        padding-right: 0;
    }

    .contact-info-column {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #eee;
        padding-top: 60px;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        min-height: 500px;
    }

    .contact-hero-title {
        letter-spacing: 4px;
    }

    .contact-main {
        padding: 60px 0;
    }

    .contact-layout {
        padding: 0 20px;
    }

    .contact-form-heading {
        font-size: 24px;
        margin-bottom: 40px;
    }

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

    .btn-elegant {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   Scroll Reveal Animations
   ======================================== */

/* Base reveal states - hidden initially */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

/* Visible state - triggered by Intersection Observer */
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Staggered delays for cascade effect */
.delay-1 {
    transition-delay: 0.1s;
}

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

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

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* Scroll reveal for sections (subtle fade) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image hover effects - enhanced */
.contact-step-image img,
.contact-ready-image img {
    filter: grayscale(100%);
    transition: filter 0.6s ease, transform 0.6s ease;
}

.contact-step:hover .contact-step-image img,
.contact-ready:hover .contact-ready-image img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* LOVE letters pulse animation */
.love-letter {
    display: inline-block;
    animation: lovePulse 2s ease-in-out infinite;
}

.love-letter:nth-child(1) {
    animation-delay: 0s;
}

.love-letter:nth-child(2) {
    animation-delay: 0.15s;
}

.love-letter:nth-child(3) {
    animation-delay: 0.3s;
}

.love-letter:nth-child(4) {
    animation-delay: 0.45s;
}

@keyframes lovePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.8;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    .reveal-up,
    .reveal-left,
    .reveal-right,
    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .love-letter {
        animation: none;
    }

    .contact-step-image img,
    .contact-ready-image img {
        filter: grayscale(0%);
        transition: none;
    }

    .carousel-track {
        animation: none !important;
    }
}

/* ========================================
   Contact Page - Original Site Structure
   ======================================== */

/* Parallax Window Section */
.parallax-window-section {
    padding: 120px 0 80px;
    background: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax-window {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0;
}

.parallax-inner {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    overflow: hidden;
}

.parallax-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.1s ease-out;
}

.parallax-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    text-align: center;
}

.tagline-italic {
    font-family: var(--font-heading);
    font-size: clamp(18px, 3vw, 28px);
    font-style: italic;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 1px;
    margin: 0;
}

/* About Text Section */
.about-text-section {
    padding: 80px 0 100px;
    background: var(--color-white);
    text-align: center;
}

.about-text-section .section-title {
    font-family: var(--font-body);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    letter-spacing: 6px;
    color: var(--color-black);
    margin-bottom: 50px;
}

.about-paragraphs {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-paragraphs p {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 300;
    line-height: 2;
    color: var(--color-gray-dark);
    margin-bottom: 30px;
    text-align: left;
}

.about-paragraphs p strong {
    font-weight: 500;
    color: var(--color-black);
}

/* Contact Form Section - Original Style */
.contact-form-section {
    padding: 100px 0;
    background: var(--color-white);
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
    align-items: center;
}

.form-image-oval {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-image-oval img {
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    filter: sepia(10%);
}

.form-content {
    text-align: left;
}

.form-content .form-heading {
    font-family: var(--font-body);
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--color-black);
    margin-bottom: 5px;
    text-align: left;
}

.form-subheading {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--color-gray);
    margin-bottom: 40px;
}

.contact-form .form-field {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--color-black);
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-gray);
    letter-spacing: 3px;
}

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

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    display: inline-block;
    padding: 15px 50px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--color-black);
    background: transparent;
    border: 1px solid var(--color-black);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* Contact Footer - Original Style */
.contact-footer {
    padding: 80px 0 60px;
    background: var(--color-white);
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: center;
    gap: 100px;
    max-width: 1000px;
    margin: 0 auto 50px;
    padding: 0 40px;
}

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

.footer-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--color-black);
    margin-bottom: 10px;
}

.footer-value {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: var(--color-gray);
    letter-spacing: 1px;
}

.footer-social {
    margin: 40px 0;
}

.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: var(--color-black);
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.6;
}

.footer-brand {
    margin-top: 30px;
}

.brand-name {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--color-black);
    margin-bottom: 8px;
}

.brand-year {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: var(--color-gray);
}

/* Responsive - New Contact Structure */
@media (max-width: 980px) {
    .parallax-window {
        max-width: 90%;
        height: 350px;
    }

    .form-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 40px;
    }

    .form-image-oval {
        order: -1;
    }

    .form-content .form-heading {
        text-align: center;
    }

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

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .parallax-window-section {
        padding: 100px 0 60px;
    }

    .parallax-window {
        height: 300px;
    }

    .about-text-section {
        padding: 60px 0 80px;
    }

    .about-paragraphs {
        padding: 0 25px;
    }

    .about-paragraphs p {
        text-align: center;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .form-container {
        padding: 0 25px;
    }

    .contact-footer {
        padding: 60px 0 40px;
    }

    .footer-container {
        padding: 0 25px;
    }
}

@media print {

    .header,
    .hero-video,
    .scroll-indicator,
    .contact-form {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }
}

/* ========================================
   Minimalist Contact Page Styles
   ======================================== */
.minimal-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 140px 30px 80px;
}

.minimal-section {
    padding: 60px 0;
    text-align: center;
}

.minimal-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 40px;
    color: var(--color-black);
}

.minimal-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 20px;
}

.minimal-text:last-child {
    margin-bottom: 0;
}

.minimal-poetic {
    font-style: italic;
    color: var(--color-gray);
}

.minimal-divider {
    border: none;
    height: 1px;
    background: #e0e0e0;
    max-width: 60px;
    margin: 0 auto;
}

/* Minimal Form */
.minimal-form {
    max-width: 500px;
    margin: 40px auto 0;
    text-align: left;
}

.minimal-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.minimal-form .form-field {
    margin-bottom: 0;
}

.minimal-form .form-field.full {
    grid-column: 1 / -1;
}

.minimal-form input,
.minimal-form textarea {
    width: 100%;
    padding: 14px 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--color-black);
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    transition: border-color 0.3s ease;
}

.minimal-form input::placeholder,
.minimal-form textarea::placeholder {
    color: #999;
    font-weight: 300;
    letter-spacing: 1px;
}

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

.minimal-form textarea {
    resize: vertical;
    min-height: 120px;
}

.minimal-button {
    display: block;
    width: 100%;
    margin-top: 40px;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--color-black);
    background: transparent;
    border: 1px solid var(--color-black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.minimal-button:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* Minimal Footer */
.minimal-footer {
    padding-top: 40px;
}

.minimal-location {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--color-gray);
    margin-bottom: 10px;
}

.minimal-email {
    margin-top: 30px;
    font-size: 14px;
    color: var(--color-gray);
}

.minimal-email a {
    color: var(--color-black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.minimal-email a:hover {
    opacity: 0.6;
}

.minimal-social {
    margin-top: 40px;
    font-size: 13px;
    letter-spacing: 1px;
}

.minimal-social a {
    color: var(--color-gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.minimal-social a:hover {
    color: var(--color-black);
}

.minimal-social span {
    margin: 0 12px;
    color: #ccc;
}

.minimal-copyright {
    margin-top: 50px;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--color-gray);
}

/* Responsive Minimal */
@media (max-width: 600px) {
    .minimal-page {
        padding: 120px 25px 60px;
    }

    .minimal-section {
        padding: 40px 0;
    }

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

    .minimal-text br {
        display: none;
    }
}

/* ========================================
   Vanessaivo-Inspired Contact Page
   ======================================== */

/* Contact Hero */
.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(20%);
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.contact-hero .hero-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-white);
    margin: 0 auto 30px;
}

.contact-hero h1 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 6px;
    margin-bottom: 15px;
}

.contact-hero p {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
}

/* Contact Wrapper */
.contact-wrapper {
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 30px 100px;
}

/* Intro */
.contact-intro {
    text-align: center;
    padding: 40px 0 60px;
}

.contact-intro p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 2;
    color: var(--color-gray-dark);
}

/* Divider */
.contact-wrapper .divider {
    border: none;
    height: 1px;
    background: #e5e5e5;
    max-width: 50px;
    margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.contact-form .form-field input,
.contact-form .form-field textarea {
    width: 100%;
    padding: 15px 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--color-black);
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form .form-field input::placeholder,
.contact-form .form-field textarea::placeholder {
    color: #aaa;
    font-weight: 300;
}

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

.contact-form .form-field.full {
    margin-bottom: 25px;
}

.contact-form .form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn-send {
    display: block;
    margin: 40px auto 0;
    padding: 15px 50px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--color-black);
    background: transparent;
    border: 1px solid var(--color-black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn-send:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* Contact Sections */
.contact-section {
    padding: 60px 0;
    text-align: center;
}

.contact-section .section-line {
    display: block;
    width: 40px;
    height: 1px;
    background: #ddd;
    margin: 0 auto 30px;
}

.contact-section h2 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 30px;
    color: var(--color-black);
}

.contact-section p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 15px;
}

.contact-section p:last-child {
    margin-bottom: 0;
}

/* Numbered Items */
.numbered-item {
    text-align: center;
}

.numbered-item .number {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #bbb;
    margin-bottom: 20px;
}

.numbered-item h3 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 25px;
    color: var(--color-black);
}

.numbered-item p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-gray-dark);
    max-width: 500px;
    margin: 0 auto;
}

/* Contact Footer Section */
.contact-footer-section {
    padding: 80px 0 40px;
    text-align: center;
}

.contact-footer-section .location-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 10px;
}

.contact-footer-section .location-value {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--color-gray-dark);
    margin-bottom: 40px;
}

.contact-footer-section .email-line {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: #999;
    margin-bottom: 30px;
}

.contact-footer-section .email-line a {
    color: var(--color-black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-footer-section .email-line a:hover {
    opacity: 0.6;
}

.contact-footer-section .social-links {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

.contact-footer-section .social-links a {
    color: var(--color-gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-footer-section .social-links a:hover {
    color: var(--color-black);
}

.contact-footer-section .social-links span {
    margin: 0 15px;
    color: #ccc;
}

.contact-footer-section .copyright {
    font-size: 11px;
    letter-spacing: 2px;
    color: #bbb;
}

/* Contact Page Responsive */
@media (max-width: 600px) {
    .contact-hero {
        height: 50vh;
        min-height: 300px;
    }

    .contact-wrapper {
        padding: 60px 25px 80px;
    }

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

    .contact-form .form-field {
        margin-bottom: 20px;
    }

    .contact-intro p br {
        display: none;
    }
}

/* ========================================
   Editor Mode: Ensure hero text can be nudged
   Keep display AND spacing IDENTICAL to normal mode for design consistency
   ======================================== */
.akari-edit-mode .hero-title[data-editable] {
    /* position:relative needed for transform/nudge to work */
    position: relative !important;
    /* Preserve normal mode margin (from .hero-title line 293) */
    margin-bottom: 20px !important;
}

.akari-edit-mode .hero-subtitle[data-editable] {
    /* position:relative needed for transform/nudge to work */
    position: relative !important;
    /* Keep display:block to match .hero-subtitle in normal mode (line 303) */
    display: block !important;
    /* Preserve normal mode margin (from .hero-subtitle line 305) */
    margin-top: 10px !important;
}

/* ========================================
   Glassmorphism Header (2026 Polish)
   ======================================== */
.header.scrolled {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* ========================================
   Journey Slider - Homepage Implementation
   ======================================== */
.journey-section {
    padding: 120px 0;
    background: var(--color-white);
    overflow: hidden;
}

.journey-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.journey-header .line {
    display: block;
    width: 40px;
    height: 1px;
    background: #e0e0e0;
    margin: 0 auto 30px;
}

.journey-header h2 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-black);
    margin-bottom: 25px;
}

.journey-header p {
    font-size: 15px;
    font-weight: 300;
    line-height: 2;
    color: var(--color-gray);
}

.slider-container {
    position: relative;
    padding: 0 80px;
}

.slide-track {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 40px 0 60px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slide-track::-webkit-scrollbar {
    display: none;
}

.journey-card {
    flex: 0 0 420px;
    scroll-snap-align: center;
    background: #fafafa;
    border: 1px solid #eee;
    padding: 60px 45px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.journey-card:hover {
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    transform: translateY(-10px);
    border-color: #ddd;
}

.card-number {
    font-family: 'Outfit', sans-serif;
    font-size: 80px;
    font-weight: 200;
    color: #eee;
    line-height: 1;
    margin-bottom: 30px;
    transition: color 0.5s ease;
}

.journey-card:hover .card-number {
    color: #000;
    opacity: 0.05;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: var(--color-black);
    margin-bottom: 30px;
}

.card-content p {
    font-size: 14px;
    line-height: 2;
    color: var(--color-gray);
    margin-bottom: 20px;
}

/* Nav Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid #eee;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 50%;
}

.nav-arrow:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

.nav-arrow svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5px;
}

.prev-arrow {
    left: 10px;
}

.next-arrow {
    right: 10px;
}

/* Progress Dots */
.progress-wrapper {
    text-align: center;
    margin-top: 40px;
}

.progress-dots {
    display: inline-flex;
    gap: 12px;
}

.progress-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.4s ease;
}

.progress-dot.active {
    background: #000;
    width: 20px;
    border-radius: 10px;
}

.scroll-hint {
    text-align: center;
    font-size: 10px;
    letter-spacing: 2px;
    color: #ccc;
    text-transform: uppercase;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .slider-container {
        padding: 0 40px;
    }

    .journey-card {
        flex: 0 0 calc(100vw - 80px);
        min-height: 400px;
        padding: 40px 30px;
    }

    .nav-arrow {
        display: none;
    }
}

/* ========================================
   Google reCAPTCHA Badge Hiding
   ======================================== */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* =========================================
   Akari Lightbox - Premium Unified (v8.0)
   Consolidated and cleaned up 2026-01-27
   ========================================= */

/* Body lock when lightbox is open */
body.akari-lb-open,
body.akari-lightbox-open {
    overflow: hidden !important;
    touch-action: none !important;
}

/* Overlay - Premium glassmorphism */
.akari-lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 100000;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.akari-lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    cursor: pointer;
    /* click outside closes */
}

/* Container - Premium styling */
.akari-lightbox-container {
    width: min(1200px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.55);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: default !important;
}

.akari-lightbox-overlay.active .akari-lightbox-container {
    transform: scale(1);
}

/* Mobile: full-bleed feel */
@media (max-width: 768px) {
    .akari-lightbox-container {
        width: 100vw;
        max-height: 100vh;
        border-radius: 0;
    }
}

/* Video element inside lightbox - NATIVE CONTROLS ENABLED */
.akari-lightbox-container video,
.akari-lightbox-container video.akariLB-video,
.akariLB-video,
.akari-player-skip {
    width: 100% !important;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000;
}

/* CRITICAL: Force native controls to display */
.akari-lightbox-container video::-webkit-media-controls,
.akariLB-video::-webkit-media-controls,
.akari-player-skip::-webkit-media-controls {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    width: auto !important;
    height: auto !important;
}

/* Ensure AkariPlayer NEVER wraps or styles lightbox videos */
.akari-lightbox-container .akari-player-container,
.akari-lightbox-container .akari-player-controls,
.akari-lightbox-container .akari-player-progress-container,
.akari-lightbox-container .akari-player-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Iframe support */
.akari-lightbox-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

/* Close button - Premium floating style */
.akari-lightbox-close {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 100001;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 28px;
    line-height: 44px;
    cursor: pointer;
    display: grid;
    place-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.3s ease;
}

.akari-lightbox-close:hover {
    background: rgba(0, 0, 0, 0.65);
}

/* Loader - Premium dots animation */
.akariLB-loader {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 1;
}

.akariLB-loader .dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: akariPulse 1.4s infinite ease-in-out both;
}

.akariLB-loader .dot:nth-child(1) {
    animation-delay: -0.32s;
}

.akariLB-loader .dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes akariPulse {

    0%,
    80%,
    100% {
        transform: scale(0);
        opacity: 0.3;
    }

    40% {
        transform: scale(1.0);
        opacity: 1;
    }
}

/* Gallery Link - Ensure pointer cursor */
.gallery-link {
    cursor: pointer;
}

/* 16:9 wrapper for player */
.akariLB-stage {
    aspect-ratio: 16 / 9;
    width: 100%;
    background: #000;
}

/* ========================================
   Global Custom Header Styles (Quiet Luxury)
   ======================================== */
.custom-header {
    background: transparent !important;
    box-shadow: none !important;
    padding-top: 20px;
    transition: background 0.3s ease, padding 0.3s ease;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}

.custom-header.scrolled {
    background: #fff !important;
    padding-top: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.custom-header .min-nav-link {
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff !important;
    font-weight: 400;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.custom-header .min-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s;
}

.custom-header .min-nav-link:hover::after {
    width: 100%;
}

.custom-header.scrolled .min-nav-link {
    color: #000 !important;
}

.custom-header.scrolled .min-nav-link::after {
    background: #000;
}

.custom-header.scrolled .custom-logo a {
    color: #000 !important;
}

/* =============================================================================
   Hide AkariPlayer controls on decorative videos (video-card containers)
   ============================================================================= */
.video-card .akari-player-container .akari-player-controls,
.video-card .akari-player-container .akari-player-menu,
.video-card .akari-player-container .akari-player-progress-container,
.video-card .akari-player-controls,
.video-card .akari-player-menu,
.video-card .akari-player-progress-container,
.video-card .akari-player-controls-row,
.video-card .akari-player-menu-title,
.video-card .akari-player-menu-content,
.video-card .akari-player-menu-item,
.video-card .akari-player-time,
.video-card .akari-player-btn,
.video-card .akari-player-left,
.video-card .akari-player-right {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    clip: rect(0, 0, 0, 0) !important;
}

/* Force video-card to constrain its height and hide overflow */
.video-card,
.video-card .akari-player-container {
    overflow: hidden !important;
}

/* Ensure video fills properly */
.video-card video,
.video-card .akari-player-video {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}

/* Hide controls on contact-specific video stack */
.video-stack .akari-player-controls,
.video-stack .akari-player-menu,
.contact-videos .akari-player-controls,
.contact-videos .akari-player-menu {
    display: none !important;
    visibility: hidden !important;
}