:root {
    --gold: #d4af37;
    --navy: #0a192f;
    --navy-light: #112240;
    --text-light: #e6f1ff;
    --text-muted: #8892b0;
    --white: #ffffff;
    --transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Optima', 'Palatino', serif;
}

body {
    background-color: var(--navy);
    color: var(--text-light);
    height: 100vh;
    overflow: hidden;
}

#app {
    max-width: 500px;
    margin: 0 auto;
    background: var(--navy);
    height: 100vh;
    position: relative;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    overflow: hidden;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    z-index: 100;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.nav-logo {
    width: 40px;
    height: 40px;
    pointer-events: auto;
}

.dot-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: auto;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.5);
}

/* Scroll Container */
#scroll-container {
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.full-section {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 40px 25px;
    background: linear-gradient(transparent, var(--navy));
}

.eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.cta-gold {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

/* Process Section */
.full-section.dark {
    background: var(--navy-light);
    padding: 80px 25px 25px;
}

.section-title h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.process-scroll {
    flex: 1;
    overflow-y: auto;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
}

.process-step img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.step-desc h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--white);
}

.step-desc p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Gallery Section */
.gallery-layout {
    padding: 80px 20px 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.grid-item {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 4px;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 25, 47, 0.8);
    padding: 10px;
    backdrop-filter: blur(5px);
}

.item-overlay h4 {
    font-size: 0.75rem;
    color: var(--gold);
}

.item-overlay p {
    font-size: 0.6rem;
    color: var(--text-muted);
}

/* Contact Section */
.contact-section {
    padding: 80px 25px;
    justify-content: center;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--gold);
}

.location-list {
    margin-bottom: 40px;
}

.loc-item {
    margin-bottom: 15px;
}

.loc-item strong {
    display: block;
    font-size: 1rem;
}

.loc-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.social-flex {
    display: flex;
    gap: 15px;
}

.social-flex a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
}

.contact-action {
    margin-top: auto;
    background: var(--navy-light);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.cta-whatsapp {
    width: 100%;
    background: #25d366;
    color: white;
    border: none;
    padding: 18px;
    font-weight: bold;
    border-radius: 4px;
    margin-top: 15px;
    cursor: pointer;
}

.policy-note {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 15px;
    text-align: center;
}

.mini-footer {
    text-align: center;
    font-size: 0.7rem;
    color: #444;
    margin-top: 20px;
}

/* Hide scrollbar */
#scroll-container::-webkit-scrollbar,
.process-scroll::-webkit-scrollbar {
    display: none;
}