/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #fff;
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
    overflow-wrap: break-word;
    -webkit-text-size-adjust: 100%;
}

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

img {
    max-width: 100%;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    background: #fff;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    padding: 1rem 3rem;
}

/* Transparent navbar for hero pages */
.navbar.navbar-transparent {
    background: transparent;
    box-shadow: none;
}

.navbar.navbar-transparent .nav-links a {
    color: rgba(255, 255, 255, 0.8);
}

.navbar.navbar-transparent .nav-links a:hover,
.navbar.navbar-transparent .nav-links a.active {
    color: #fff;
}

.navbar.navbar-transparent .nav-toggle span {
    background: #fff;
}

.navbar.navbar-transparent.scrolled {
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.navbar.navbar-transparent.scrolled .nav-links a {
    color: rgba(10, 10, 10, 0.6);
}

.navbar.navbar-transparent.scrolled .nav-links a:hover,
.navbar.navbar-transparent.scrolled .nav-links a.active {
    color: #000000;
}

.navbar.navbar-transparent.scrolled .nav-toggle span {
    background: #000000;
}

/* When mobile menu is open on transparent navbar, keep dark text */
@media (max-width: 1024px) {
    .navbar.navbar-transparent .nav-links a {
        color: rgba(10, 10, 10, 0.7);
    }

    .navbar.navbar-transparent .nav-links a:hover,
    .navbar.navbar-transparent .nav-links a.active {
        color: #000000;
        opacity: 1;
    }
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: softFadeIn 1.5s ease forwards;
    opacity: 0;
}

.nav-logo {
    height: 32px;
    width: auto;
    display: block;
}

.nav-brand-divider {
    color: rgba(10, 10, 10, 0.2);
    font-weight: 200;
    font-size: 1.1rem;
}

.nav-brand-text {
    font-family: 'Fraunces', serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: #000000;
}

/* Dark version shown by default (white navbar) */
.nav-logo-dark { display: block; }
.nav-logo-light { display: none; }

/* Transparent navbar: show white logo, hide dark */
.navbar-transparent .nav-logo-dark { display: none; }
.navbar-transparent .nav-logo-light { display: block; }
.navbar-transparent .nav-brand-divider { color: rgba(255, 255, 255, 0.3); }
.navbar-transparent .nav-brand-text { color: #fff; }

/* Once scrolled, back to dark logo */
.navbar-transparent.scrolled .nav-logo-dark { display: block; }
.navbar-transparent.scrolled .nav-logo-light { display: none; }
.navbar-transparent.scrolled .nav-brand-divider { color: rgba(10, 10, 10, 0.2); }
.navbar-transparent.scrolled .nav-brand-text { color: #000000; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(10, 10, 10, 0.6);
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #000000;
}

/* Nav globe language toggle */
.nav-globe-wrapper {
    position: relative;
    z-index: 1002;
    margin-left: 0.5rem;
}

.nav-globe {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(10, 10, 10, 0.5);
    padding: 0.5rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-globe:hover {
    color: #000000;
}

.nav-globe-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    min-width: 120px;
}

.nav-globe-dropdown.open {
    display: block;
}

.nav-globe-dropdown button {
    display: block;
    width: 100%;
    padding: 0.7rem 1rem;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: rgba(10, 10, 10, 0.6);
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-globe-dropdown button:hover {
    background: rgba(10, 10, 10, 0.04);
    color: #000000;
}

.nav-globe-dropdown button.active {
    color: #000000;
    font-weight: 500;
}

.navbar-transparent .nav-globe {
    color: rgba(255, 255, 255, 0.6);
}

.navbar-transparent .nav-globe:hover {
    color: #fff;
}

.navbar-transparent.scrolled .nav-globe {
    color: rgba(10, 10, 10, 0.5);
}

.navbar-transparent.scrolled .nav-globe:hover {
    color: #000000;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.nav-toggle span {
    width: 25px;
    height: 1px;
    background: #000000;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

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

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

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero-dark {
    background: #000000;
}

/* Film grain overlay */
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.008;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    z-index: 1;
}

.hero-parallax {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.hero-logo {
    height: 120px;
    width: auto;
    margin: 0 auto 1.5rem;
    animation: softFadeIn 2.5s ease forwards;
    opacity: 0;
}

.hero-content h1 {
    font-family: 'Fraunces', serif;
    font-size: 6rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    margin-bottom: 1.5rem;
    line-height: 1;
    animation: softFadeIn 2.5s ease 0.4s forwards;
    opacity: 0;
}

@keyframes softFadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    opacity: 0;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: softFadeIn 2.5s ease 1.2s forwards;
}

.hero-divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin: 1.5rem auto;
    animation: softFadeIn 2.5s ease 0.8s forwards;
    opacity: 0;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: -8rem;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll-indicator span {
    display: block;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
    animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.2; transform: scaleY(0.4); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ===== STATEMENT ===== */
.statement {
    padding: 4rem 2rem;
    text-align: center;
}

.statement-text {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem;
    font-weight: 200;
    font-style: italic;
    letter-spacing: 0.02em;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== SPLIT SECTION ===== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: auto;
    padding: 4rem 2rem;
    gap: 0;
}

.split-image {
    overflow: hidden;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-image img {
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.split-text {
    padding: 3rem 3rem 3rem 2rem;
}

.split-text p {
    font-size: 1rem;
    line-height: 2;
    opacity: 0.75;
}

.split-reverse .split-text {
    padding: 3rem 2rem 3rem 3rem;
}

/* ===== EXPERIENCE SECTION ===== */
.experience {
    padding: 6rem 0;
}

.experience-header {
    text-align: center;
    margin-bottom: 4rem;
}

.experience-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.4;
    display: block;
    margin-bottom: 1.5rem;
}

.experience-header h2 {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 6rem;
    max-width: 1000px;
    margin: 0 auto;
}

.experience-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.experience-number {
    font-family: 'Fraunces', serif;
    font-size: 4rem;
    font-weight: 700;
    opacity: 0.15;
    line-height: 1;
    flex-shrink: 0;
}

.experience-content h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
}

.experience-content p {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.6;
}

/* ===== IMAGE BREAK ===== */
.image-break {
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== CAROUSEL ===== */
.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 0 3rem;
    box-sizing: border-box;
}

.carousel-track {
    display: flex;
    gap: 16px;
    will-change: transform;
    animation: carouselScroll 40s linear infinite;
    animation-play-state: running;
}

@keyframes carouselScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(var(--scroll-width)); }
}

.carousel-section {
    position: relative;
    width: 100%;
    background: #000000;
    padding: 4rem 0;
    overflow: hidden;
}

.carousel-slide {
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 2px;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
    pointer-events: none;
}

.carousel-slide:hover img {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .carousel-track-wrapper {
        padding: 0 2.5rem;
    }
    .carousel-section {
        padding: 3rem 0;
    }
}

/* ===== WEDDING SECTION ===== */
.wedding-section {
    padding: 6rem 2rem;
    text-align: center;
}

.wedding-text {
    font-size: 1.2rem;
    line-height: 2.2;
    opacity: 0.7;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    color: #000000;
    border-color: #fff;
}

.btn-primary:hover::before {
    transform: translateY(0);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
}

/* ===== FOOTER ===== */
.footer {
    padding: 5rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    background: #fff;
    color: #000000;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin: 0 auto;
    display: block;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-social a {
    color: rgba(10, 10, 10, 0.4);
    transition: color 0.3s ease;
}

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

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: rgba(10, 10, 10, 0.4);
    transition: color 0.3s ease;
}

.footer-links a:hover { color: #000000; }

.footer-copy {
    font-size: 0.75rem;
    color: rgba(10, 10, 10, 0.3);
}

/* ===== PAGE HEADER (for other pages) ===== */
.page-header {
    padding: 10rem 2rem 6rem;
    text-align: center;
}

.page-header h1 {
    font-family: 'Fraunces', serif;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 0;
}

.page-subtitle {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.6;
    margin-top: 1rem;
    letter-spacing: 0.03em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== GALLERY (Portfolio) ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 0 2rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* ===== GALLERY ALTERNATING LAYOUT ===== */
.gallery-alternating {
    padding: 0 2rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-row {
    display: grid;
    gap: 1rem;
}

.gallery-row-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-row-4 .gallery-item {
    aspect-ratio: 3 / 4;
}

.gallery-row-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-row-2 .gallery-item {
    aspect-ratio: 4 / 3;
}

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

.gallery-alternating .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-alternating .gallery-item:hover img {
    transform: scale(1.06);
}

@media (max-width: 768px) {
    .gallery-alternating {
        padding: 0 1rem 4rem;
        gap: 0.5rem;
    }

    .gallery-row {
        gap: 0.5rem;
    }

    .gallery-row-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-row-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-row-2 .gallery-item {
        aspect-ratio: 4 / 3;
    }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    padding: 1rem;
}

.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* ===== ABOUT PAGE ===== */
.about-section {
    padding: 0;
    max-width: 100%;
    margin: 0;
}

/* Hero — foto de los dos, contenida y centrada */
.about-hero {
    width: 100%;
    max-height: 520px;
    overflow: hidden;
    margin-top: 60px;
    background: #fff;
}

.about-hero img {
    width: 100%;
    height: 520px;
    object-fit: contain;
    object-position: center center;
    display: block;
    background: #fff;
}

/* Text + individual photos below */
.about-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem 6rem;
}

.about-content {
    display: block;
    margin-bottom: 4rem;
}

.about-image {
    display: none;
}

.about-text h1 {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 2;
    margin-bottom: 1rem;
}

/* Team photos — side by side */
.about-team {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 4rem;
}

.about-team-photo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-team-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.about-team-name {
    font-family: 'Fraunces', serif;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-align: center;
    opacity: 0.4;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .about-hero { max-height: 300px; }
    .about-team { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 10rem 2rem 6rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-section h1 {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-subtitle {
    text-align: center;
    opacity: 0.6;
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

/* Contact option buttons */
.contact-options {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 2.5rem 3rem;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.contact-option:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.contact-option-icon {
    opacity: 0.8;
}

.contact-option-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.6;
}

/* Modal form */
.modal-form {
    max-width: 540px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem 2rem;
    position: relative;
    text-align: left;
    border-radius: 2px;
}

.modal-form h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: end;
}

@media (max-width: 1024px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.modal-close-x {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close-x:hover {
    color: #fff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.5;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
}

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

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: #000000;
    color: #fff;
}

.form-group select:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.form-section-title {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-top: 2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-submit {
    padding: 1.2rem 3rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    align-self: center;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.form-submit:hover {
    color: #000000;
    border-color: #fff;
}

.form-submit:hover::before {
    transform: translateY(0);
}

.contact-info {
    margin-top: 4rem;
    text-align: center;
}

.contact-info p {
    opacity: 0.5;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-social a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.contact-social a:hover { color: #fff; }

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active { display: flex; }

.modal-content {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.modal-content h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.modal-content p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.modal-close {
    padding: 0.8rem 2.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #fff;
    color: #000000;
}

/* ===== SERVICES PAGE ===== */
.services-accordion {
    padding: 2rem 0 6rem;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: opacity 0.3s ease;
    text-align: left;
}

.accordion-header:hover {
    opacity: 0.7;
}

.accordion-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 0 2rem;
}

.accordion-content p {
    font-size: 0.9rem;
    line-height: 1.9;
    opacity: 0.6;
}

/* ===== SECTION SPACER ===== */
.section-spacer {
    height: 6rem;
    background: #000000;
}

/* ===== DELIVERABLES ===== */
.deliverables {
    padding: 6rem 0;
    background: #fff;
    color: #000000;
}

.deliverables h2 {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    color: #000000;
}

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

.deliverable-item {
    text-align: center;
    padding: 2rem;
}

.deliverable-number {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem;
    font-weight: 700;
    opacity: 0.1;
    display: block;
    margin-bottom: 1.5rem;
    color: #000000;
}

.deliverable-item h3 {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    color: #000000;
}

.deliverable-item p {
    font-size: 0.85rem;
    line-height: 1.8;
    opacity: 0.6;
    color: #000000;
}

/* ===== SETUP SECTION ===== */
.setup-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.setup-section-light {
    background: #fff;
    color: #000000;
    border-top: none;
}

.setup-section-light h2 {
    color: #000000;
}

.setup-section-light .setup-intro {
    color: #000000;
}

.setup-section h2 {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1.5rem;
}

.setup-intro {
    text-align: center;
    opacity: 0.7;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.setup-diagram {
    max-width: 700px;
    margin: 0 auto;
}

.setup-diagram img {
    width: 100%;
    display: block;
}

/* ===== SERVICES CTA ===== */
.services-cta {
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.services-cta h2 {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.services-cta p {
    opacity: 0.6;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 2rem 0 6rem;
}

/* ===== PRIVACY ===== */
.privacy-section {
    padding: 10rem 2rem 6rem;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section h1 {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.privacy-updated {
    opacity: 0.4;
    font-size: 0.85rem;
    margin-bottom: 3rem;
}

.privacy-content h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-content p {
    font-size: 0.9rem;
    line-height: 1.9;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.privacy-content ul {
    list-style: none;
    margin: 1rem 0;
}

.privacy-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

.privacy-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    opacity: 0.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .navbar {
        padding: 1.2rem 1.5rem;
    }

    .navbar.scrolled {
        padding: 1rem 1.5rem;
    }

    .hero-content h1 {
        font-size: clamp(3rem, 7vw, 5rem);
        letter-spacing: 0.2em;
    }

    .nav-toggle {
        display: flex;
        order: 3;
    }

    .nav-globe-wrapper {
        order: 2;
        margin-left: auto;
        margin-right: 0.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transition: right 0.3s ease;
        z-index: 1001;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 0.9rem;
        color: rgba(10, 10, 10, 0.7);
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: #000000;
    }

    /* Tablet: split en 2 columnas más ajustadas */
    .split-section {
        grid-template-columns: 1fr 1fr;
    }

    .split-text {
        padding: 3rem 2.5rem;
    }

    /* Tablet: experience en 1 columna */
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 600px;
    }

    /* Tablet: deliverables en 1 columna */
    .deliverables-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Tablet: contact options */
    .contact-options {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Hero */
    .hero-logo {
        height: 80px;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
        letter-spacing: 0.15em;
    }

    .hero-tagline {
        font-size: clamp(0.6rem, 2.5vw, 0.85rem);
        letter-spacing: 0.12em;
    }

    /* Statement */
    .statement-text {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }

    .statement {
        padding: 4rem 1.5rem;
    }

    /* Split */
    .split-section {
        grid-template-columns: 1fr;
    }

    .split-image img {
        min-height: auto;
        max-height: none;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .split-text {
        padding: 2.5rem 1.5rem;
    }

    .split-text h2 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .split-text p {
        font-size: clamp(0.85rem, 3vw, 1rem);
    }

    .split-reverse {
        direction: ltr;
    }

    /* Experience */
    .experience {
        padding: 4rem 0;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .experience-header h2 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    /* Carousel */
    .carousel-track-wrapper {
        padding: 0 2.5rem;
    }

    .carousel-section {
        padding: 3rem 0;
    }

    /* Wedding */
    .wedding-section {
        padding: 4rem 1.5rem;
    }

    .wedding-text {
        font-size: clamp(0.85rem, 3vw, 1rem);
        line-height: 2;
    }

    /* Deliverables */
    .deliverables {
        padding: 4rem 0;
    }

    .deliverables-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .deliverables h2 {
        font-size: 1.8rem;
        padding: 0 1.5rem;
    }

    /* Setup */
    .setup-section {
        padding: 4rem 0;
    }

    .setup-section h2 {
        font-size: 1.8rem;
        padding: 0 1.5rem;
    }

    .setup-intro {
        padding: 0 1.5rem;
    }

    .setup-diagram {
        padding: 0 1rem;
    }

    /* Page header */
    .page-header {
        padding: 8rem 1.5rem 4rem;
    }

    .page-header h1 {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    /* About */
    .about-hero img {
        height: auto;
        max-height: 280px;
    }

    .about-hero {
        max-height: 280px;
        margin-top: 56px;
    }

    .about-body {
        padding: 3rem 1.5rem 4rem;
    }

    .about-team {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 2.5rem;
    }

    .about-text h1 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .about-text p {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0 1rem 4rem;
    }

    /* Contact */
    .contact-section {
        padding: 8rem 1.5rem 4rem;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .contact-option {
        width: 100%;
        max-width: 280px;
        padding: 2rem;
    }

    /* CTA */
    .cta-section {
        padding: 4rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    /* Page hero */
    .page-hero {
        height: 50vh;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 1.5rem;
    }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #111 0%, #000000 50%, #1a1610 100%);
    text-align: center;
}

.page-hero-overlay {
    display: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 2rem;
}

.page-hero-content h1 {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.page-hero-content p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.75;
}

/* ===== SPLIT REVERSE ===== */
.split-reverse {
    direction: rtl;
}

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

/* ===== SECTION LABEL ===== */
.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.4;
    display: block;
    margin-bottom: 1.5rem;
}

.split-text h2 {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

/* ===== FULL SECTION (texto arriba, imagen horizontal abajo) ===== */
.full-section {
    padding: 4rem 0 0;
}

.full-section-light {
    background: #fff;
    color: #000000;
}

.full-section-light .section-label {
    opacity: 0.4;
    color: #000000;
}

.full-section-light h2 {
    color: #000000;
}

.full-section-light p {
    color: #000000;
}

.full-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    text-align: center;
}

.full-text .section-label {
    margin-bottom: 1.5rem;
}

.full-text h2 {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.full-text p {
    font-size: 1rem;
    line-height: 2;
    opacity: 0.75;
}

.full-image {
    width: 100%;
    overflow: hidden;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem 0;
}

.full-section-light .full-image {
    padding-bottom: 0;
    margin-bottom: 0;
}

.full-image img {
    max-width: 100%;
    max-height: 700px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .full-text {
        padding: 0 1.5rem;
        margin-bottom: 3rem;
    }

    .full-text h2 {
        font-size: 1.8rem;
    }

    .full-image {
        padding: 0;
        max-height: none;
    }

    .full-image img {
        max-height: none;
        width: 100%;
    }
}

/* ===== ABOUT TEAM ENHANCEMENTS ===== */
.about-team-role {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-top: 0.3rem;
}

/* Reduce spacing between hero and text in about */
.about-section {
    padding: 0 0 6rem;
}

.about-hero {
    margin-bottom: 0;
}

.about-text {
    padding-top: 4rem;
}

/* Enhance deliverables numbers */
.deliverable-number {
    font-size: 5rem !important;
    opacity: 0.08 !important;
}

.deliverable-item {
    position: relative;
    padding: 3rem 2rem !important;
}

.deliverable-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}


/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ===== IMPROVED SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Gallery items stagger animation */
.gallery-item.reveal {
    transition-delay: calc(var(--i, 0) * 0.08s);
}
