:root {
    --color-ivory: #FAF8F4;
    --color-champagne: #E8D5C4;
    --color-gold: #C9A96E;
    --color-sage: #3D5247;
    --color-ink: #1A1512;
    --color-white: #FFFFFF;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Jost', sans-serif;
    --spacing-lg: 100px;
    --spacing-md: 60px;
    --spacing-sm: 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--color-ivory);
    color: var(--color-ink);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

h1, h2, h3, .heading-display {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

section {
    position: relative;
    padding: var(--spacing-lg) 20px;
}

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

.btn {
    display: inline-block;
    padding: 18px 40px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 0;
    border: none;
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.btn-gold:hover {
    background-color: var(--color-sage);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

/* 1. HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    background: url('../image/hero.webp') no-repeat center center/cover;
    padding: 40px 20px 80px;
}

.hero-logo {
    width: 180px;
    z-index: 10;
}


.hero-content {
    z-index: 10;
    max-width: 800px;
    padding: 20px;
}

.hero-eyebrow {
    font-size: 1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    font-style: italic;
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

/* 2. STATS BAR */
.stats-bar {
    background-color: var(--color-sage);
    color: var(--color-white);
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-bar { grid-template-columns: repeat(3, 1fr); }
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* 3. SOMOS ABDI Y YANG */
.about {
    background-color: var(--color-white);
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 700px;
    margin-bottom: 50px;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--color-sage);
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* 4. SUSPIRO SECTION */
.quote-section {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    background: url('../image/suspiro.webp') no-repeat center center/cover;
    background-attachment: fixed;
    padding: 20px;
}

.quote-content {
    z-index: 10;
    max-width: 900px;
}

.quote-content h2 {
    font-size: 3.5rem;
    font-style: italic;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .quote-content h2 { font-size: 2.2rem; }
}

/* 5. GALLERY MOSAIC */
.gallery-grid {
    display: grid;
    grid-template-areas: 
        "g1 g1"
        "g2 g3";
    grid-gap: 15px;
}

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

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

.g1 { grid-area: g1; height: auto; }
.g1 img { height: auto; }
.g2 { grid-area: g2; height: 350px; }
.g3 { grid-area: g3; height: 350px; }

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-areas: 
            "g1"
            "g2"
            "g3";
        grid-template-columns: 1fr;
    }
    .g1 { height: auto; }
    .g2, .g3 { height: 300px; }
}

/* 6. TIMELINE */
.timeline {
    background-color: var(--color-ivory);
}

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

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 50px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--color-gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: var(--color-gold);
    border: 4px solid var(--color-ivory);
    border-radius: 50%;
}

.timeline-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--color-sage);
}

/* 7. PAQUETES HEADER */
.packages-hero {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    background: url('../image/paquetes.webp') no-repeat center center/cover;
}

/* 8. PACKAGES GRID */
.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: -100px;
    padding: 20px;
    z-index: 10;
    position: relative;
}

@media (min-width: 992px) {
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
}

.pkg-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    border-top: 5px solid var(--color-champagne);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.pkg-card.featured {
    border-top: 5px solid var(--color-sage);
    background-color: var(--color-sage);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(61, 82, 71, 0.2);
    z-index: 5;
}

@media (max-width: 768px) {
    .pkg-card.featured { transform: scale(1); }
}

.pkg-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 25px;
}

.pkg-badge {
    display: inline-block;
    background: var(--color-gold);
    color: white;
    padding: 5px 15px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    align-self: flex-start;
}

.pkg-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: inherit;
}

.pkg-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.featured .pkg-price {
    color: var(--color-champagne);
}

.pkg-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pkg-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.pkg-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

.btn-outline {
    display: block;
    text-align: center;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    padding: 15px;
    text-decoration: none;
    margin-bottom: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.featured .btn-outline {
    border-color: var(--color-white);
    color: var(--color-white);
}

.featured .btn-gold {
    background-color: var(--color-white);
    color: var(--color-sage);
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: var(--color-ivory);
    max-width: 600px;
    width: 100%;
    padding: 40px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-sage);
}

/* 9. RESERVATION INFO */
.reservation {
    background-color: var(--color-sage);
    color: var(--color-white);
    text-align: center;
}

.reservation h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.res-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

@media (min-width: 768px) {
    .res-grid { grid-template-columns: 1fr 1fr; }
}

.res-item {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-left: 3px solid var(--color-gold);
}

/* 10. TESTIMONIALS */
.testimonials {
    background-color: var(--color-white);
}

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

@media (min-width: 768px) {
    .testi-grid { grid-template-columns: 1fr 1fr; }
}

.testi-card {
    background: var(--color-ivory);
    padding: 30px;
    text-align: center;
}

.stars {
    color: var(--color-gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testi-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testi-author {
    font-weight: 700;
    color: var(--color-sage);
}

/* 11 & 12. FAQ */
.faq-hero {
    background-color: var(--color-ivory);
    text-align: center;
    padding: 0;
}

.faq-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-container {
    max-width: 800px;
    margin: 20px auto 0;
    background: var(--color-white);
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 20;
}

.accordion-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.accordion-header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-sage);
}

.accordion-content {
    padding: 0 0 20px 0;
    display: none;
    color: #666;
}

/* 13. FINAL CTA */
.final-cta {
    background-color: var(--color-ivory);
    text-align: center;
}

.cta-image {
    width: 100%;
    max-width: 900px;
    margin-bottom: 40px;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-ink);
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    font-size: 1.2rem;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

footer {
    background: var(--color-ink);
    color: white;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* FREEBIES SECTION */
.freebies-section {
    background-color: var(--color-ivory);
    text-align: center;
}

.freebie-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .freebie-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.freebie-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.freebie-card.has-link:hover {
    transform: translateY(-10px);
}

.freebie-image-container {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

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

.freebie-card h3 {
    font-size: 1.2rem;
    color: var(--color-sage);
    max-width: 250px;
}

/* 6.5 EXCLUSIVITY SECTION */
.exclusivity-section {
    background-color: var(--color-sage);
    color: var(--color-white);
    text-align: center;
    padding: var(--spacing-lg) 20px;
}

.exclusivity-container h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.exclusivity-container p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 60px;
    opacity: 0.9;
    font-style: italic;
}

.exclusivity-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}

@media (min-width: 768px) {
    .exclusivity-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.excl-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    transition: border-color 0.3s ease;
    opacity: 0;
}

.excl-item:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
}

.excl-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.excl-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-white);
}

.excl-item p {
    font-size: 1rem;
    line-height: 1.6;
    font-style: normal;
    opacity: 0.8;
}

.reveal { opacity: 0; }
