@font-face {
    font-family: 'Chiffon';
    src: url('chiffon-trial-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Garamond Premier Pro';
    src: url('Garamond Premier Pro Light Display.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-left: 1px solid #e0e0e0;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #192d57 0%, #0f1a33 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0f1a33 0%, #192d57 100%);
    box-shadow: 0 0 10px rgba(25, 45, 87, 0.5);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #192d57 #f5f5f5;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #eadbc8;
    color: #192d57;
    overflow-x: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><circle cx="8" cy="8" r="6" fill="%23ffd700"/></svg>') 8 8, auto;
}

a, button, .hero-btn, .nav-link {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="8" fill="%23ffd700"/></svg>') 10 10, pointer;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #eadbc8;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease;
}

.loading-logo img {
    height: 60px;
    opacity: 0.9;
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top-color: #192d57;
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.spinner-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: rgba(25, 45, 87, 0.6);
    animation-delay: -0.5s;
}

.spinner-ring:nth-child(3) {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-top-color: rgba(25, 45, 87, 0.3);
    animation-delay: -1s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #192d57;
    animation: fadeInUp 1s ease 0.3s both;
}

body.loading {
    overflow: hidden;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    border-bottom: none;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: 60px;
}

.logo-left {
    position: absolute;
    top: 110px;
    left: 80px;
    z-index: 100;
}

.logo-left img {
    height: 160px;
    opacity: 0.9;
}

.logo-left-mobile {
    display: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo img {
    height: 60px;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #192d57;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #192d57;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #0f1a33;
}

.nav-right {
    display: flex;
    align-items: center;
}

.language-switcher {
    display: flex;
    gap: 5px;
}

.lang-btn {
    padding: 8px 20px;
    border: 1px solid #192d57;
    background: transparent;
    color: #192d57;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.lang-btn:hover {
    background: rgba(25, 45, 87, 0.1);
}

.lang-btn.active {
    background: #192d57;
    color: #eadbc8;
    border-color: #192d57;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('lunessa_wedding_couple.png') center 20%/cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 160px 60px 120px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: 300;
    color: #192d57;
    margin: 0 0 30px;
    letter-spacing: 0.02em;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-title-main {
    font-family: 'Chiffon', serif;
    font-size: 8rem;
    font-weight: 400;
    line-height: 1;
}

.hero-title-sub {
    font-family: 'Chiffon', serif;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: none;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.hero-title-separator {
    font-size: 2.5rem;
    font-weight: 300;
    color: #192d57;
    opacity: 0.5;
}

.hero-title-sub-small {
    font-size: 3rem;
}

.hero-title-sub-small:first-child {
    position: relative;
    left: 0;
}

.hero-title-sub-small:last-child {
    position: relative;
    left: 0;
}

.hero-title-sub-large {
    font-size: 3rem;
    position: relative;
    left: 0;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #192d57;
    letter-spacing: 1px;
    line-height: 2;
    margin-bottom: 50px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 18px 45px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    background: #192d57;
    color: #eadbc8;
    border: 1px solid #192d57;
    transition: all 0.4s ease;
    cursor: none;
    min-width: 220px;
    text-align: center;
}

.hero-btn:hover {
    background: #0f1a33;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(25, 45, 87, 0.3);
}

.hero-btn-outline {
    background: #192d57;
    color: #eadbc8;
    border: 1px solid #192d57;
}

.hero-btn-outline:hover {
    background: #0f1a33;
    color: #eadbc8;
}

/* Hero Instagram Button */
.hero-instagram {
    margin-top: 40px;
    text-align: center;
    margin-left: 2px;
}

.hero-instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    color: #192d57;
    border: 2px solid #192d57;
    transition: all 0.4s ease;
    cursor: pointer;
    min-width: 200px;
}

.hero-instagram-btn:hover {
    background: #192d57;
    color: #eadbc8;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(25, 45, 87, 0.3);
}

.hero-instagram-btn i {
    font-size: 0.95rem;
}

/* Hero Corner Logo */
.hero-corner-logo {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 150;
    background: #eadbc8;
    padding: 40px 55px 40px 40px;
    border-radius: 0 70px 70px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-corner-logo img {
    height: 120px;
    display: block;
}

/* Hero Corner Logo Right */
.hero-corner-logo-right {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 150;
    background: #eadbc8;
    padding: 40px 40px 40px 55px;
    border-radius: 70px 0 0 70px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-corner-logo-right img {
    height: 120px;
    display: block;
}

/* Services Ticker */
.services-ticker {
    background: linear-gradient(135deg, #192d57 0%, #0f1a33 100%);
    padding: 25px 0;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-top: 1px solid rgba(234, 219, 200, 0.3);
    border-bottom: 1px solid rgba(234, 219, 200, 0.3);
    z-index: 100;
}

.ticker-wrapper {
    display: flex;
    width: fit-content;
    animation: scroll 40s linear infinite;
}

.ticker-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding-right: 50px;
}

.ticker-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #eadbc8;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ticker-separator {
    color: rgba(234, 219, 200, 0.6);
    font-size: 1.2rem;
    padding: 0 10px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.services-ticker:hover .ticker-wrapper {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .services-ticker {
        padding: 16px 0;
    }
    
    .ticker-item {
        font-size: 0.8rem;
        letter-spacing: 2px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .services-ticker {
        padding: 15px 0;
    }
    
    .ticker-item {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        padding: 0 15px;
    }
}

.services {
    padding: 150px 60px;
    background: #eadbc8;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: #192d57;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
}

.divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #192d57, transparent);
    margin: 0 auto 40px;
}

.services-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    margin: 0 -60px;
    padding-left: 60px;
    padding-right: 60px;
    cursor: default !important;
}

.services-scroll-container * {
    cursor: default !important;
}

.services-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.services-scroll-container::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.services-scroll-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #192d57 0%, #0f1a33 100%);
    border-radius: 10px;
}

.services-scroll-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0f1a33 0%, #192d57 100%);
}

.services-grid {
    display: flex;
    gap: 40px;
    width: max-content;
}

.service-card {
    position: relative;
    text-align: center;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
    width: 320px;
    height: 400px;
    flex-shrink: 0;
    border: 1px solid #192d57;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(25, 45, 87, 0.6) 0%, rgba(25, 45, 87, 0.75) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.service-card:hover::before {
    background: linear-gradient(180deg, rgba(25, 45, 87, 0.75) 0%, rgba(25, 45, 87, 0.9) 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(25, 45, 87, 0.4);
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-icon {
    display: none;
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #eadbc8;
    margin: 0;
    padding: 40px 30px 20px;
    letter-spacing: 0.02em;
}

.service-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #eadbc8;
    line-height: 1.8;
    letter-spacing: 0.5px;
    padding: 0 30px 40px;
}

/* Service Modal */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.service-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 45, 87, 0.95);
    backdrop-filter: blur(10px);
}

.service-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: #eadbc8;
    border: 2px solid #192d57;
    z-index: 1;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.service-modal.active .service-modal-content {
    transform: scale(1);
}

.service-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #192d57;
    color: #eadbc8;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.service-modal-close:hover {
    background: #0f1a33;
    transform: rotate(90deg);
}

.service-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(25, 45, 87, 0.9);
    color: #eadbc8;
    border: 2px solid #eadbc8;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-modal-nav:hover {
    background: #192d57;
    transform: translateY(-50%) scale(1.1);
}

.service-modal-prev {
    left: 20px;
}

.service-modal-next {
    right: 20px;
}

.service-modal-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.service-modal-nav:disabled:hover {
    transform: translateY(-50%) scale(1);
}

.service-modal-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    max-height: 90vh;
}

.service-modal-image {
    position: relative;
    overflow: hidden;
    background: #192d57;
}

.service-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-modal-details {
    padding: 80px 60px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-modal-counter {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(25, 45, 87, 0.6);
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.service-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #192d57;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.service-modal-divider {
    width: 80px;
    height: 2px;
    background: #192d57;
    margin-bottom: 40px;
}

.service-modal-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #192d57;
    line-height: 2;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .service-modal-inner {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .service-modal-image {
        min-height: 300px;
        max-height: 400px;
    }
    
    .service-modal-details {
        padding: 40px 30px;
    }
    
    .service-modal-title {
        font-size: 2.5rem;
    }
    
    .service-modal-description {
        font-size: 1rem;
    }
    
    .service-modal-nav {
        width: 50px;
        height: 50px;
    }
    
    .service-modal-prev {
        left: 10px;
    }
    
    .service-modal-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .service-modal-content {
        width: 95%;
    }
    
    .service-modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        top: 15px;
        right: 15px;
    }
    
    .service-modal-details {
        padding: 30px 20px;
    }
    
    .service-modal-title {
        font-size: 2rem;
    }
    
    .service-modal-description {
        font-size: 0.95rem;
    }
    
    .service-modal-nav {
        width: 40px;
        height: 40px;
    }
    
    .service-modal-prev {
        left: 5px;
    }
    
    .service-modal-next {
        right: 5px;
    }
}

.about {
    padding: 50px 60px;
    background: rgba(255, 255, 255, 0.4);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #192d57;
    line-height: 2.2;
    letter-spacing: 0.5px;
}

.contact {
    padding: 150px 60px;
    background: #eadbc8;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #192d57;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.contact-info {
    margin-top: 40px;
}

.contact-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #192d57;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
    display: block;
    margin-bottom: 15px;
}

.contact-link:hover {
    color: #0f1a33;
}

.social-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #192d57;
    color: #192d57;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.social-link:hover {
    background: #192d57;
    color: #eadbc8;
    transform: translateY(-5px);
}

.social-link i {
    pointer-events: none;
}

.footer {
    padding: 30px 60px;
    text-align: center;
    background: #ffffff;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer {
    padding: 30px 60px;
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(25, 45, 87, 0.1);
}

.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: #192d57;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 20px 40px;
    }
    
    .nav-links {
        display: none;
    }
    
    .logo-left {
        top: 75px;
        left: 70px;
    }
    
    .logo-left img {
        height: 125px;
    }
    
    .hero-content {
        padding: 0 40px 80px;
    }
    
    .hero-title {
        font-size: 6rem;
    }
    
    .hero-title-main {
        font-size: 6rem;
    }
    
    .hero-title-sub {
        font-size: 1rem;
        letter-spacing: 3px;
        gap: 15px;
    }
    
    .hero-title-sub-small {
        font-size: 2.2rem;
    }
    
    .hero-title-sub-large {
        font-size: 2.2rem;
    }
    
    .hero-title-separator {
        font-size: 2.2rem;
    }
    
    .hero-instagram {
        margin-top: 25px;
    }
    
    .services-ticker {
        bottom: 0;
    }
    
    .services, .about, .contact {
        padding: 60px 40px;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 20px 30px;
        flex-wrap: nowrap;
    }
    
    .logo img {
        height: 35px;
    }
    
    .logo-left {
        top: 60px;
        left: 50px;
    }
    
    .logo-left {
        left: 30px !important;
    }
    
    .logo-left img {
        height: 100px;
    }
    
    .nav-links {
        display: none;
    }
    
    .services-ticker {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 10;
    }
    
    .hero {
        padding-top: 0;
        min-height: 100vh;
        margin-top: 0;
        height: 100vh;
        position: relative;
    }
    
    .hero-image {
        top: 0;
        height: 100vh;
        background-size: cover;
        background-position: center center;
        z-index: 1;
    }
    
    .hero-content {
        margin-top: 0;
        padding: 0 30px 100px;
        z-index: 2;
    }
    
    .hero-content {
        padding: 0 30px 100px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-title-main {
        font-size: 4rem;
    }
    
    .hero-title-sub {
        font-size: 1rem;
        letter-spacing: 3px;
        gap: 10px;
    }
    
    .hero-title-sub-small {
        font-size: 1.2rem;
    }
    
    .hero-title-sub-large {
        font-size: 1.2rem;
    }
    
    .hero-title-separator {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        gap: 15px;
    }
    
    .hero-corner-logo {
        padding: 28px 38px 28px 28px;
        top: auto;
        bottom: 180px;
        transform: none;
    }
    
    .hero-corner-logo img {
        height: 80px;
    }
    
    .hero-corner-logo-right {
        padding: 28px 28px 28px 38px;
        top: auto;
        bottom: 180px;
        transform: none;
    }
    
    .hero-corner-logo-right img {
        height: 80px;
    }
    
    .hero-btn {
        padding: 15px 35px;
        font-size: 0.7rem;
    }
    
    .services, .about, .contact {
        padding: 40px 30px;
    }
    
    .services-scroll-container {
        margin: 0 -30px;
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .service-card {
        width: 280px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .services-grid {
        gap: 60px;
    }
    
    .service-card {
        padding: 40px 30px;
    }
    
    .service-title {
        font-size: 1.8rem;
    }
    
    .contact-link {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 15px 20px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .logo-left {
        top: 80px;
        left: 60px;
    }
    
    .logo-left {
        display: block !important;
        position: absolute !important;
        left: 30px !important;
        top: 80px !important;
    }
    
    .logo-left img {
        height: 80px;
    }
    
    .logo-left-mobile {
        display: none !important;
    }
    
    .nav-links {
        display: none;
    }
    
    .services-ticker {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 10;
        padding: 15px 0;
    }
    
    .hero {
        padding-top: 0;
        margin-top: 0;
        height: 100vh;
        min-height: 100vh;
        position: relative;
    }
    
    .hero-image {
        top: 0;
        height: 100vh;
        background-image: url('bgphone.jpg') !important;
        background-position: center center;
        background-size: cover;
        z-index: 1;
    }
    
    .hero-content {
        margin-top: 130px;
        padding: 0 20px 80px;
        z-index: 2;
    }
    
    .lang-btn {
        padding: 6px 14px;
        font-size: 0.65rem;
    }
    
    .hero-content {
        padding: 0 20px 80px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-title-main {
        font-size: 2.8rem;
    }
    
    .hero-title-sub {
        font-size: 0.75rem;
        letter-spacing: 2px;
        gap: 8px;
    }
    
    .hero-title-sub-small {
        font-size: 0.9rem;
    }
    
    .hero-title-sub-large {
        font-size: 0.9rem;
    }
    
    .hero-title-separator {
        font-size: 0.9rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-corner-logo {
        padding: 20px 30px 20px 20px;
        top: auto;
        bottom: 150px;
        transform: none;
    }
    
    .hero-corner-logo img {
        height: 60px;
    }
    
    .hero-corner-logo-right {
        padding: 20px 20px 20px 30px;
        top: auto;
        bottom: 150px;
        transform: none;
    }
    
    .hero-corner-logo-right img {
        height: 60px;
    }
    
    .hero-btn {
        width: 100%;
        padding: 12px 25px;
        font-size: 0.65rem;
        min-width: auto;
    }
    
    .hero-instagram {
        margin-top: 20px;
    }
    
    .hero-instagram-btn {
        padding: 12px 25px;
        font-size: 0.65rem;
        gap: 10px;
    }
    
    .hero-instagram-btn i {
        font-size: 1rem;
    }
    
    .services, .about, .contact {
        padding: 40px 20px;
    }
    
    .services-scroll-container {
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .service-card {
        width: 260px;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .divider {
        width: 60px;
    }
    
    .services-grid {
        gap: 40px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .service-desc {
        font-size: 0.85rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .contact-link {
        font-size: 1.2rem;
    }
    
    .footer {
        padding: 20px;
    }
}

.custom-context-menu {
    position: absolute;
    background: #eadbc8;
    border: 1px solid #192d57;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95) translateY(-10px);
    transition: all 0.2s ease;
    pointer-events: none;
}

.custom-context-menu.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    pointer-events: all;
}

.context-menu-item {
    padding: 15px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #192d57;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.context-menu-item:hover {
    background: rgba(25, 45, 87, 0.1);
    border-left-color: #192d57;
    padding-left: 30px;
}

.context-menu-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: none;
    color: #192d57;
    cursor: default;
    text-align: center;
    padding: 12px 25px;
}

.context-menu-brand:hover {
    background: transparent;
    border-left-color: transparent;
    padding-left: 25px;
}

.context-menu-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #192d57, transparent);
    margin: 5px 15px;
}


/* Teklif Formu Bölümü */
.quote-section {
    padding: 150px 60px;
    background: rgba(255, 255, 255, 0.4);
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #192d57;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.quote-form {
    text-align: left;
    margin-top: 50px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 20px 15px 10px;
    border: none;
    border-bottom: 1px solid #192d57;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #192d57;
    background: transparent;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: #0f1a33;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label,
.form-group select:valid + label {
    top: 0;
    font-size: 0.7rem;
    color: #192d57;
}

.form-group label {
    position: absolute;
    top: 20px;
    left: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #192d57;
    pointer-events: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-group select option {
    padding: 10px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 25px;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    margin-top: 30px;
    background: #192d57;
    border: none;
    color: #eadbc8;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
}

.submit-btn:hover {
    background: #0f1a33;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(25, 45, 87, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-message.show {
    opacity: 1;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .quote-section {
        padding: 80px 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .quote-section {
        padding: 60px 20px;
    }
    
    .quote-subtitle {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 0.85rem;
    }
    
    .submit-btn {
        padding: 18px;
        font-size: 0.7rem;
    }
}


/* Galeri Bölümü */
.gallery-section {
    padding: 150px 0;
    background: #eadbc8;
    overflow: hidden;
}

.gallery-section .section-header {
    padding: 0 60px;
}

.gallery-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #192d57;
    margin-bottom: 80px;
    letter-spacing: 0.5px;
}

.gallery-scroll-container {
    position: relative;
    padding: 0 60px;
}

.gallery-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #192d57 #f5f5f5;
}

.gallery-grid::-webkit-scrollbar {
    height: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: #192d57;
    border-radius: 4px;
}

.gallery-grid::-webkit-scrollbar-thumb:hover {
    background: #0f1a33;
}

.gallery-item {
    position: relative;
    flex: 0 0 450px;
    height: 350px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border: 1px solid #192d57;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-empty {
    text-align: center;
    padding: 60px 20px;
    color: #192d57;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.gallery-instagram {
    text-align: center;
    margin-top: 60px;
    padding: 0 60px;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    border: none;
    transition: all 0.4s ease;
    cursor: pointer;
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(188, 24, 136, 0.4);
}

.instagram-btn i {
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .gallery-section {
        padding: 100px 0;
    }
    
    .gallery-section .section-header {
        padding: 0 40px;
    }
    
    .gallery-scroll-container {
        padding: 0 40px;
    }
    
    .gallery-item {
        flex: 0 0 380px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 80px 0;
    }
    
    .gallery-section .section-header {
        padding: 0 30px;
    }
    
    .gallery-scroll-container {
        padding: 0 30px;
    }
    
    .gallery-item {
        flex: 0 0 320px;
        height: 250px;
    }
    
    .gallery-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-section .section-header {
        padding: 0 20px;
    }
    
    .gallery-scroll-container {
        padding: 0 20px;
    }
    
    .gallery-subtitle {
        font-size: 0.9rem;
        margin-bottom: 50px;
    }
    
    .gallery-item {
        flex: 0 0 280px;
        height: 220px;
    }
}


.contact-address {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #192d57;
    line-height: 1.8;
    margin-top: 20px;
    text-align: center;
}

/* 2026 final delivery polish */
:focus-visible { outline: 3px solid #c7a86b; outline-offset: 4px; }
.header { backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.hero-content { max-width: 1040px; padding-inline: 24px; }
.hero-title { text-wrap: balance; text-shadow: 0 8px 36px rgba(0, 0, 0, .28); }
.hero-subtitle { max-width: 760px; margin-inline: auto; text-wrap: pretty; }
.hero-btn, .submit-btn, .instagram-btn { border-radius: 999px; box-shadow: 0 10px 30px rgba(25, 45, 87, .14); }
.service-card, .gallery-item { border-radius: 18px; overflow: hidden; box-shadow: 0 18px 55px rgba(25, 45, 87, .11); }
.service-card { border: 1px solid rgba(199, 168, 107, .22); }
.quote-form { border-radius: 24px; box-shadow: 0 24px 70px rgba(25, 45, 87, .10); }
@media (max-width: 768px) {
    .hero-title-main { letter-spacing: .08em; }
    .hero-buttons { gap: 12px; }
    .hero-btn { width: min(100%, 320px); justify-content: center; }
    .service-card { border-radius: 14px; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* 2026 active homepage hero refinement */
.hero-overlay {
    background:
        radial-gradient(ellipse at center, rgba(246, 237, 225, .54) 0%, rgba(234, 219, 200, .18) 50%, rgba(15, 26, 51, .18) 100%),
        linear-gradient(180deg, rgba(234, 219, 200, .18), rgba(15, 26, 51, .12));
}

.hero-content {
    width: min(calc(100% - 48px), 980px);
    margin: 90px auto 120px;
    padding: clamp(52px, 7vw, 82px) clamp(28px, 7vw, 78px);
    background: linear-gradient(145deg, rgba(241, 229, 214, .78), rgba(234, 219, 200, .58));
    border: 1px solid rgba(255, 255, 255, .56);
    box-shadow: 0 30px 90px rgba(15, 26, 51, .17);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
}

.hero-content::before {
    content: 'WEDDING  •  EVENT  •  ORGANIZATION';
    display: block;
    margin-bottom: 25px;
    color: rgba(25, 45, 87, .72);
    font-family: 'Montserrat', sans-serif;
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .28em;
}

.hero-title,
.hero-title-main { font-size: clamp(5rem, 8vw, 7.2rem); }
.hero-title { margin-bottom: 22px; }
.hero-title-sub-small,
.hero-title-sub-large { font-size: clamp(1.8rem, 3vw, 2.7rem); }
.hero-subtitle { margin-bottom: 34px; font-size: clamp(1rem, 1.6vw, 1.3rem); }
.hero-instagram { margin-top: 26px; }
.hero-btn,
.hero-instagram-btn { backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }

@media (max-width: 768px) {
    .hero-content {
        width: calc(100% - 28px);
        margin: 105px auto 90px;
        padding: 42px 18px 38px;
    }
    .hero-content::before { margin-bottom: 18px; font-size: .52rem; letter-spacing: .16em; }
    .hero-title,
    .hero-title-main { font-size: clamp(3.5rem, 18vw, 5rem); }
    .hero-title-sub { gap: 9px; letter-spacing: 1px; }
    .hero-title-sub-small,
    .hero-title-sub-large { font-size: clamp(1.25rem, 6vw, 1.8rem); }
    .hero-title-separator { font-size: 1.35rem; }
    .hero-buttons { display: grid; width: min(100%, 320px); margin-inline: auto; }
    .hero-btn { width: 100%; min-width: 0; }
}

/* 2026 photo-first correction: keep the couple visible */
.hero { align-items: flex-end; }

.hero-image { background-position: center 20%; }

.hero-overlay {
    background:
        linear-gradient(180deg, rgba(15, 26, 51, .03) 0%, rgba(234, 219, 200, .05) 42%, rgba(15, 26, 51, .22) 100%),
        linear-gradient(90deg, rgba(15, 26, 51, .08), transparent 25%, transparent 75%, rgba(15, 26, 51, .06));
}

.hero-content {
    width: min(calc(100% - 40px), 980px);
    margin: 0 auto 102px;
    padding: 0 24px 24px;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero-content::before {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 9px 16px;
    background: rgba(242, 230, 215, .68);
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 999px;
    box-shadow: 0 8px 30px rgba(15, 26, 51, .08);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.hero-title,
.hero-title-main {
    font-size: clamp(4.8rem, 7.5vw, 6.9rem);
    text-shadow: 0 2px 3px rgba(255, 255, 255, .72), 0 10px 34px rgba(255, 255, 255, .64);
}

.hero-title { margin-bottom: 14px; }
.hero-title-sub-small,
.hero-title-sub-large { text-shadow: 0 2px 18px rgba(255, 255, 255, .86); }

.hero-subtitle {
    width: fit-content;
    max-width: min(100%, 760px);
    margin: 0 auto 24px;
    padding: 7px 18px;
    background: rgba(242, 230, 215, .46);
    border-radius: 999px;
    text-shadow: 0 1px 12px rgba(255, 255, 255, .85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-buttons { gap: 12px; }
.hero-btn { min-width: 190px; padding: 15px 32px; }

.hero-instagram { margin-top: 18px; }
.hero-instagram-btn {
    padding: 12px 30px;
    background: rgba(242, 230, 215, .64);
    border-width: 1px;
}

@media (max-width: 768px) {
    .hero { min-height: 100svh; }
    .hero-image { background-position: 58% center; }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(15, 26, 51, .02) 0%, rgba(234, 219, 200, .08) 34%, rgba(15, 26, 51, .30) 100%);
    }
    .hero-content {
        width: 100%;
        margin: 0 auto 68px;
        padding: 0 16px 22px;
    }
    .hero-content::before { margin-bottom: 12px; padding: 7px 12px; }
    .hero-title,
    .hero-title-main { font-size: clamp(3.2rem, 16vw, 4.6rem); }
    .hero-subtitle { margin-bottom: 18px; padding: 6px 12px; font-size: .92rem; line-height: 1.5; }
    .hero-buttons { gap: 9px; }
    .hero-btn { padding: 13px 22px; }
    .hero-instagram { margin-top: 12px; }
    .hero-instagram-btn { padding: 10px 22px; }
}

@media (max-height: 760px) and (min-width: 769px) {
    .hero-content { margin-bottom: 78px; transform: scale(.9); transform-origin: center bottom; }
}

/* 2026 services, gallery and quote refinement */
.services, .gallery-section, .quote-section { position: relative; isolation: isolate; }

.services {
    padding: clamp(92px, 10vw, 144px) clamp(24px, 4.5vw, 68px);
    background: radial-gradient(circle at 10% 15%, rgba(255,255,255,.62), transparent 30%), linear-gradient(145deg, #f0e4d4, #e7d4bd);
}

.services::before, .gallery-section::before, .quote-section::before {
    content: "LUNESSA";
    display: block;
    margin: 0 auto 18px;
    color: rgba(25,45,87,.68);
    font: 400 .66rem/1 'Montserrat', sans-serif;
    letter-spacing: .42em;
    text-align: center;
}

.services .section-header, .gallery-section .section-header { margin-bottom: clamp(42px, 6vw, 72px); }
.services .section-title, .gallery-section .section-title, .quote-section .section-title {
    margin-bottom: 18px;
    font-size: clamp(2.8rem, 5.5vw, 4.7rem);
}
.services .divider, .gallery-section .divider, .quote-section .divider { margin-bottom: 25px; }

.services-scroll-container {
    margin: 0 clamp(-68px, -4.5vw, -24px);
    padding: 14px clamp(24px, 4.5vw, 68px) 30px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}
.services-grid { gap: clamp(18px, 2.3vw, 32px); }
.service-card {
    width: clamp(300px, 27vw, 370px);
    height: clamp(430px, 47vw, 510px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    border: 1px solid rgba(255,255,255,.68);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(25,45,87,.13);
    scroll-snap-align: start;
    transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease;
}
.service-card::before { background: linear-gradient(180deg, rgba(15,26,51,.02) 10%, rgba(15,26,51,.18) 44%, rgba(15,26,51,.94)); }
.service-card:hover::before { background: linear-gradient(180deg, rgba(15,26,51,.04) 5%, rgba(15,26,51,.24) 42%, rgba(15,26,51,.97)); }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 28px 70px rgba(25,45,87,.22); }
.service-title { width: 100%; padding: 0 30px 12px; font-size: clamp(1.75rem, 2.2vw, 2.15rem); line-height: 1.06; }
.service-desc { width: 100%; padding: 0 30px 31px; font-size: .84rem; line-height: 1.65; color: rgba(247,237,222,.88); }

.gallery-section {
    padding: clamp(92px, 10vw, 144px) 0;
    background: radial-gradient(circle at 88% 22%, rgba(255,255,255,.55), transparent 28%), linear-gradient(155deg, #f7ede1, #ead8c3);
}
.gallery-section .section-header { padding: 0 clamp(24px, 4.5vw, 68px); }
.gallery-subtitle { max-width: 620px; margin: 0 auto; line-height: 1.8; }
.gallery-scroll-container { padding: 0 clamp(24px, 4.5vw, 68px); }
.gallery-grid { gap: clamp(18px, 2vw, 28px); padding: 18px 0 30px; scroll-snap-type: x mandatory; }
.gallery-item {
    flex: 0 0 clamp(300px, 31vw, 430px);
    height: clamp(390px, 38vw, 500px);
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 24px;
    box-shadow: 0 18px 52px rgba(25,45,87,.13);
    scroll-snap-align: start;
    transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease;
}
.gallery-item:nth-child(3n+1) { flex-basis: clamp(330px, 40vw, 550px); }
.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 52%, rgba(15,26,51,.28));
}
.gallery-item::after {
    content: "+";
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    color: #fff;
    font: 300 1.45rem/1 'Montserrat', sans-serif;
    backdrop-filter: blur(8px);
    transition: transform .35s ease, background .35s ease;
}
.gallery-item:hover { transform: translateY(-7px); box-shadow: 0 30px 72px rgba(25,45,87,.2); }
.gallery-item:hover::after { transform: rotate(90deg); background: rgba(25,45,87,.7); }
.gallery-item img { border: 0; }

.quote-section {
    padding: clamp(92px, 10vw, 144px) clamp(20px, 4.5vw, 68px);
    background: radial-gradient(circle at 10% 20%, rgba(231,212,189,.8), transparent 31%), radial-gradient(circle at 90% 85%, rgba(25,45,87,.08), transparent 28%), #fbf7f1;
    overflow: hidden;
}
.quote-content { max-width: 980px; }
.quote-subtitle { max-width: 620px; margin: 0 auto 45px; line-height: 1.8; }
.quote-form {
    margin-top: 36px;
    padding: clamp(26px, 5vw, 58px);
    border: 1px solid rgba(25,45,87,.13);
    border-radius: 30px;
    background: rgba(255,255,255,.66);
    box-shadow: 0 28px 80px rgba(25,45,87,.1);
    backdrop-filter: blur(10px);
}
.quote-form .form-row { gap: 18px; margin-bottom: 18px; }
.quote-form .form-group input, .quote-form .form-group textarea, .quote-form .form-group select {
    padding: 25px 16px 12px;
    border: 1px solid rgba(25,45,87,.2);
    border-radius: 13px;
    background-color: rgba(255,255,255,.72);
    transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.quote-form .form-group input:focus, .quote-form .form-group textarea:focus, .quote-form .form-group select:focus {
    border-color: #192d57;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(25,45,87,.07);
}
.quote-form .form-group label { top: 19px; left: 16px; }
.quote-form .form-group input:focus + label, .quote-form .form-group textarea:focus + label, .quote-form .form-group select:focus + label,
.quote-form .form-group input:valid + label, .quote-form .form-group textarea:valid + label, .quote-form .form-group select:valid + label {
    top: 7px;
    left: 16px;
    font-size: .62rem;
}
.quote-form .form-group textarea { min-height: 150px; }
.quote-form .submit-btn { min-height: 58px; margin-top: 20px; border-radius: 999px; box-shadow: 0 14px 30px rgba(25,45,87,.18); }

@media (max-width: 768px) {
    .services, .gallery-section, .quote-section { padding-top: 82px; padding-bottom: 82px; }
    .service-card { width: min(82vw, 330px); height: 430px; }
    .gallery-item, .gallery-item:nth-child(3n+1) { flex-basis: min(84vw, 350px); height: 430px; }
    .quote-form { padding: 26px 20px; border-radius: 22px; }
}

/* 2026 responsive hero, about and contact refinement */
.hero-image {
    background-image: url('lunessa-hero-2026.webp');
    background-position: center 46%;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-overlay {
    background:
        linear-gradient(180deg, rgba(15,26,51,.08) 0%, rgba(15,26,51,.02) 34%, rgba(15,26,51,.46) 100%),
        linear-gradient(90deg, rgba(242,230,215,.11), transparent 34%, transparent 66%, rgba(242,230,215,.08));
}

.about {
    padding: clamp(96px, 11vw, 154px) clamp(24px, 5vw, 76px);
    background:
        radial-gradient(circle at 12% 18%, rgba(234,219,200,.12), transparent 30%),
        radial-gradient(circle at 92% 86%, rgba(234,219,200,.08), transparent 26%),
        #142750;
    overflow: hidden;
}

.about-content {
    width: min(100%, 1240px);
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: clamp(48px, 7vw, 100px);
    align-items: center;
    text-align: left;
}

.section-kicker {
    display: block;
    margin-bottom: 22px;
    color: #cbb595;
    font: 400 .65rem/1 'Montserrat', sans-serif;
    letter-spacing: .38em;
    text-transform: uppercase;
}

.about .section-title {
    max-width: 640px;
    margin-bottom: 24px;
    color: #f4e8d9;
    font-size: clamp(3rem, 5.2vw, 5rem);
    line-height: .98;
    text-wrap: balance;
}

.about .divider {
    margin: 0 0 30px;
    background: linear-gradient(90deg, #cbb595, transparent);
}

.about-text {
    max-width: 650px;
    color: rgba(244,232,217,.76);
    font-size: clamp(.98rem, 1.25vw, 1.1rem);
    line-height: 2;
}

.about-values {
    display: grid;
    gap: 14px;
}

.about-value {
    position: relative;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    padding: 26px 28px;
    border: 1px solid rgba(244,232,217,.17);
    border-radius: 20px;
    background: rgba(255,255,255,.045);
    box-shadow: inset 0 1px rgba(255,255,255,.05);
    transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.about-value:hover {
    transform: translateX(7px);
    border-color: rgba(203,181,149,.48);
    background: rgba(255,255,255,.075);
}

.about-value > span {
    grid-row: 1 / span 2;
    color: #cbb595;
    font: 400 1.15rem/1 'Cormorant Garamond', serif;
}

.about-value h3 {
    margin: 0 0 8px;
    color: #f4e8d9;
    font: 400 clamp(1.45rem, 2.2vw, 1.85rem)/1.1 'Cormorant Garamond', serif;
}

.about-value p {
    margin: 0;
    color: rgba(244,232,217,.62);
    font: 300 .82rem/1.7 'Montserrat', sans-serif;
}

.contact {
    padding: clamp(96px, 11vw, 150px) clamp(24px, 5vw, 76px);
    background:
        radial-gradient(circle at 10% 20%, rgba(255,255,255,.65), transparent 31%),
        linear-gradient(145deg, #f2e5d5 0%, #e6d1b9 100%);
}

.contact-content {
    width: min(100%, 1180px);
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
    gap: clamp(44px, 7vw, 92px);
    align-items: center;
    text-align: left;
}

.contact .section-kicker { color: rgba(25,45,87,.64); }
.contact .section-title {
    margin-bottom: 26px;
    font-size: clamp(3rem, 5vw, 4.9rem);
    line-height: .98;
    text-wrap: balance;
}

.contact-text {
    max-width: 630px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.9;
}

.contact-card {
    padding: clamp(30px, 4vw, 48px);
    border: 1px solid rgba(25,45,87,.16);
    border-radius: 28px;
    background: rgba(255,255,255,.58);
    box-shadow: 0 28px 75px rgba(25,45,87,.11);
    backdrop-filter: blur(10px);
}

.contact-card-label {
    display: block;
    margin-bottom: 24px;
    color: rgba(25,45,87,.64);
    font: 400 .64rem/1 'Montserrat', sans-serif;
    letter-spacing: .3em;
    text-transform: uppercase;
}

.contact-info { margin: 0; }
.contact-link {
    margin-bottom: 13px;
    font-size: clamp(1.45rem, 2.3vw, 2.05rem);
    line-height: 1.15;
    overflow-wrap: anywhere;
}
.contact-address { margin: 18px 0 0; line-height: 1.7; }

.contact-quote-btn {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 14px 22px;
    border-radius: 999px;
    background: #192d57;
    color: #f2e5d5;
    text-decoration: none;
    font: 400 .68rem/1 'Montserrat', sans-serif;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.contact-quote-btn:hover {
    transform: translateY(-3px);
    background: #0f1a33;
    box-shadow: 0 14px 30px rgba(25,45,87,.2);
}

.contact-card .social-links { justify-content: flex-start; margin-top: 28px; }
.contact-card .social-link { border-radius: 50%; background: rgba(255,255,255,.35); }

@media (max-width: 900px) {
    .about-content, .contact-content { grid-template-columns: 1fr; }
    .about-content { gap: 50px; }
    .contact-content { gap: 42px; }
    .contact-card { width: min(100%, 620px); }
}

@media (max-width: 600px) {
    .hero-image { background-position: 50% center; }
    .hero-overlay { background: linear-gradient(180deg, rgba(15,26,51,.04), rgba(15,26,51,.48)); }
    .about, .contact { padding-inline: 20px; }
    .about-value { grid-template-columns: 44px minmax(0,1fr); padding: 22px 18px; }
    .about-value:hover { transform: translateY(-3px); }
    .contact-card { padding: 28px 20px; border-radius: 22px; }
    .contact-card .social-links { justify-content: center; }
}

/* Hero content refinement — clearer hierarchy over the wedding photograph */
.hero { min-height: clamp(680px, 100svh, 960px); }

.hero-content {
    width: min(calc(100% - 32px), 940px);
    margin: 0 auto clamp(76px, 10vh, 112px);
    padding: 0 18px 24px;
}

.hero-kicker {
    color: #fff8ed;
    background: rgba(12,31,67,.58);
    border: 1px solid rgba(255,248,237,.58);
    box-shadow: 0 8px 28px rgba(7,17,37,.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-title-main {
    color: #fffaf2;
    font-size: clamp(4.5rem, 8vw, 7rem);
    line-height: .88;
    letter-spacing: .012em;
    text-shadow: 0 3px 2px rgba(10,27,59,.25), 0 15px 42px rgba(10,27,59,.62);
}

.hero-title-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(7px, 1.4vw, 17px);
    margin-top: 14px;
}

.hero-title-sub span:not(.hero-title-separator) {
    color: #fffaf2;
    font-size: clamp(1.4rem, 2.6vw, 2.25rem);
    line-height: 1.05;
    letter-spacing: .075em;
    text-shadow: 0 4px 18px rgba(8,23,52,.78);
}

.hero-title-separator {
    color: #e8cda3;
    font-size: clamp(1.3rem, 2.2vw, 2rem);
    opacity: .92;
    text-shadow: 0 4px 16px rgba(8,23,52,.72);
}

.hero-subtitle {
    width: fit-content;
    max-width: min(100%, 690px);
    margin: 20px auto 0;
    padding: 11px 24px;
    color: #fffaf2;
    background: rgba(12,31,67,.58);
    border: 1px solid rgba(255,248,237,.52);
    border-radius: 999px;
    box-shadow: 0 10px 32px rgba(7,17,37,.24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-actions { gap: 12px; margin-top: 22px; }

.hero-btn {
    min-width: 184px;
    min-height: 52px;
    color: #fffaf2;
    background: rgba(12,31,67,.82);
    border: 1px solid rgba(255,248,237,.55);
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(7,17,37,.2);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.hero-btn:hover {
    color: #102d63;
    background: #fff8ed;
    border-color: #fff8ed;
    box-shadow: 0 14px 34px rgba(7,17,37,.28);
}

.hero-instagram {
    width: fit-content;
    min-width: 236px;
    margin: 16px auto 0;
    color: #fffaf2;
    background: rgba(12,31,67,.38);
    border: 1px solid rgba(255,248,237,.62);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(7,17,37,.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-instagram:hover { color: #102d63; background: #fff8ed; border-color: #fff8ed; }

@media (max-width: 768px) {
    .hero { min-height: 720px; }
    .hero-content { width: min(calc(100% - 20px), 620px); margin-bottom: 66px; padding-inline: 10px; }
    .hero-title-main { font-size: clamp(3.7rem, 15vw, 5.25rem); }
    .hero-title-sub { flex-wrap: nowrap; gap: clamp(5px, 1.8vw, 10px); margin-top: 12px; }
    .hero-title-sub span:not(.hero-title-separator) { font-size: clamp(1rem, 4.5vw, 1.35rem); letter-spacing: .025em; }
    .hero-title-separator { font-size: clamp(.9rem, 3.7vw, 1.2rem); }
    .hero-subtitle { margin-top: 16px; padding: 10px 16px; font-size: clamp(.96rem, 4vw, 1.12rem); line-height: 1.35; }
    .hero-actions { display: grid; grid-template-columns: minmax(0,1fr); width: min(100%, 310px); margin: 18px auto 0; gap: 9px; }
    .hero-btn { width: 100%; min-width: 0; min-height: 48px; }
    .hero-instagram { min-width: 0; width: min(100%, 310px); margin-top: 12px; }
}

@media (max-height: 560px) and (min-width: 769px) {
    .hero { height: 100svh; min-height: 480px; }
    .hero-content { margin-bottom: 38px; padding-bottom: 8px; }
    .hero-kicker { padding: 7px 17px; font-size: .55rem; }
    .hero-title-main { font-size: clamp(3.8rem, 8vw, 4.6rem); }
    .hero-title-sub { margin-top: 7px; gap: 10px; }
    .hero-title-sub span:not(.hero-title-separator) { font-size: 1.22rem; }
    .hero-title-separator { font-size: 1.1rem; }
    .hero-subtitle { margin-top: 11px; padding: 7px 18px; font-size: .96rem; }
    .hero-actions { margin-top: 12px; }
    .hero-btn { min-height: 43px; }
    .hero-instagram { margin-top: 9px; min-height: 40px; }
}

/* Final hero spacing and unified capsule actions */
.hero-subtitle { margin-top: 24px; }
.hero-buttons { margin-top: 26px; gap: 14px; }
.hero-instagram {
    width: auto;
    min-width: 0;
    min-height: 0;
    margin: 20px auto 0;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero-instagram:hover {
    color: inherit;
    background: none;
    border: 0;
    box-shadow: none;
}

.hero-instagram-btn {
    min-width: 220px;
    min-height: 52px;
    padding: 12px 26px;
    color: #fffaf2;
    background: rgba(12,31,67,.82);
    border: 1px solid rgba(255,248,237,.55);
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(7,17,37,.2);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.hero-instagram-btn:hover {
    color: #102d63;
    background: #fff8ed;
    border-color: #fff8ed;
}

/* Desktop framing: match the fuller 110% browser-zoom composition at 100% */
@media (min-width: 1024px) and (min-height: 760px) {
    .hero { min-height: 100svh; }
    .hero-content {
        transform: scale(1.08);
        transform-origin: center bottom;
    }
}

/* Service presentation: preserve image detail and soften the split layout */
.service-modal-content {
    width: min(calc(100% - 40px), 1120px);
    border: 1px solid rgba(255,248,237,.65);
    border-radius: 26px;
    box-shadow: 0 34px 90px rgba(4,13,31,.42);
}

.service-modal-inner { grid-template-columns: minmax(0, 48%) minmax(0, 52%); }
.service-modal-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 580px;
    padding: clamp(24px, 4vw, 46px);
    background: radial-gradient(circle at 50% 38%, #294470 0%, #101f40 70%);
}
.service-modal-image img {
    display: block;
    width: min(100%, 380px);
    height: auto;
    max-height: 510px;
    object-fit: contain;
    object-position: center;
    filter: saturate(.92) contrast(1.03);
    border-radius: 16px;
    box-shadow: 0 24px 54px rgba(3,11,27,.34);
}
.service-modal-details { padding: clamp(55px, 6vw, 78px) clamp(42px, 5vw, 64px); }
.service-modal-close, .service-modal-nav { border-radius: 999px; }

@media (max-width: 768px) {
    .hero-subtitle { margin-top: 20px; }
    .hero-buttons { margin-top: 22px; gap: 11px; }
    .hero-instagram { width: min(100%, 310px); margin-top: 15px; }
    .hero-instagram-btn { width: 100%; min-width: 0; min-height: 48px; }
    .service-modal-content { width: calc(100% - 22px); max-height: calc(100svh - 22px); border-radius: 20px; }
    .service-modal-inner { grid-template-columns: 1fr; max-height: calc(100svh - 22px); }
    .service-modal-image { min-height: 0; height: clamp(250px, 42svh, 380px); padding: 18px; }
    .service-modal-image img { width: auto; max-width: 100%; height: 100%; max-height: 100%; }
    .service-modal-details { padding: 34px 24px 38px; }
}

@media (max-height: 560px) and (min-width: 769px) {
    .hero-subtitle { margin-top: 14px; }
    .hero-buttons { margin-top: 15px; }
    .hero-instagram { margin-top: 12px; }
    .hero-instagram-btn { min-height: 42px; padding-block: 8px; }
}
