/* Ocean House — 5-Star Luxury Resort Aesthetic */
/* References: Aman, One&Only, Four Seasons, Edition */

:root {
    --black: #0a0a0a;
    --white: #fafaf8;
    --cream: #f5f0eb;
    --warm: #c9a96e;
    --warm-light: #d4bc8e;
    --text: #2c2c2c;
    --text-light: #6b6b6b;
    --text-faint: #999;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 300;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

/* ─── Typography ─── */

h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--warm);
    margin-bottom: 1.5rem;
}

/* ─── Layout ─── */

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

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

/* ─── Navigation ─── */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s ease;
    background: transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    border: 1px solid rgba(255,255,255,0.4) !important;
    padding: 0.6rem 1.5rem !important;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background: var(--white) !important;
    color: var(--black) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--white);
    margin: 6px 0;
    transition: 0.3s;
}

/* ─── Mobile Menu ─── */

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    transition: opacity 0.3s;
}

.mobile-menu a:hover {
    opacity: 0.6;
}

.mobile-cta {
    margin-top: 1rem;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 1rem 2.5rem;
}

/* ─── Hero ─── */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: var(--black);
}

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

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

.hero-poster {
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0.4) 100%
    );
    z-index: 2;
}

.hero-content {
    position: absolute;
    bottom: 12%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 3;
    color: var(--white);
}

.hero-location {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    opacity: 0.8;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    opacity: 0.85;
    margin-bottom: 0;
}

.hero-cta {
    display: inline-block;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    padding: 1rem 3rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.4s ease;
}

.hero-cta:hover {
    background: var(--white);
    color: var(--black);
}

.hero-stats {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.hero-dot {
    margin: 0 0.8rem;
    opacity: 0.4;
}

/* ─── Divider ─── */

.section-divider {
    width: 60px;
    height: 1px;
    background: var(--warm);
    margin: 0 auto 2rem;
}

/* ─── Rating Bar ─── */

.rating-bar {
    background: var(--black);
    padding: 1.2rem 0;
}

.rating-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
}

.rating-stars {
    color: var(--warm);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
}

.rating-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

/* ─── Achievement Banner — refined ─── */

.achievement-banner {
    padding: 1.5rem 0;
    background: var(--cream, #faf8f5);
    border-bottom: 1px solid #eee;
}

.achievement-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.achievement-icon {
    font-size: 1.5rem;
}

.achievement-title {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
}

.achievement-description {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ─── Experience Section ─── */

.experience {
    padding: 10rem 0;
    background: var(--white);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.experience-text h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 2rem;
    color: var(--black);
}

.experience-body {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.experience-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* ─── Video Experience ─── */

.video-experience {
    padding: 8rem 0;
    background: var(--cream);
}

.video-content {
    text-align: center;
}

.video-content .section-label {
    margin-bottom: 3rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.experience-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ─── Gallery ─── */

.gallery {
    padding: 10rem 0;
    background: var(--white);
}

.gallery-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 5rem;
    color: var(--black);
}

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

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s;
}

.gallery-item:hover img {
    opacity: 0.85;
}

.gallery-large {
    grid-column: span 2;
}

.gallery-large img {
    height: 500px;
}

/* ─── Property / Amenities ─── */

.property {
    padding: 10rem 0;
    background: var(--cream);
}

.property h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 5rem;
    color: var(--black);
}

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

.amenity-card {
    text-align: center;
    padding: 2rem 1rem;
}

.amenity-icon {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--warm);
}

.amenity-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--black);
}

.amenity-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* ─── Location ─── */

.location {
    padding: 10rem 0;
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.location-text h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    color: var(--black);
}

.location-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.location-details {
    display: grid;
    gap: 1.2rem;
}

.location-detail {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.detail-label {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

.detail-value {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 0.03em;
}

.location-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* ─── Reviews ─── */

.reviews {
    padding: 10rem 0;
    background: var(--black);
    color: var(--white);
}

.reviews h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 5rem;
    color: var(--white);
}

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

.review-card {
    text-align: center;
    padding: 2rem 1rem;
}

.review-stars {
    color: var(--warm);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
}

.review-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
}

.review-author {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm);
}

/* ─── CTA ─── */

.cta {
    padding: 10rem 0;
    background: var(--cream);
    text-align: center;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--black);
}

.cta p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border: none;
    transition: all 0.4s;
}

.cta-btn:hover {
    background: var(--warm);
}

.cta-contact {
    margin-top: 2.5rem;
    font-size: 0.85rem;
    color: var(--text-faint);
}

.cta-contact a {
    color: var(--warm);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.cta-contact a:hover {
    border-bottom-color: var(--warm);
}

/* ─── Footer ─── */

.footer {
    padding: 4rem 0;
    background: var(--black);
    color: rgba(255,255,255,0.4);
}

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

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-location {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

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

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--warm);
}

.footer-copyright {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

/* ─── Mobile ─── */

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-container { padding: 0 1.5rem; }

    .hero-content {
        bottom: 10%;
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        font-size: 0.65rem;
    }

    .hero-cta {
        padding: 0.9rem 2.5rem;
    }

    .experience { padding: 6rem 0; }
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .experience-image img { height: 400px; }

    .video-experience { padding: 5rem 0; }

    .gallery { padding: 6rem 0; }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    .gallery-large { grid-column: span 1; }
    .gallery-item img,
    .gallery-large img { height: 280px; }
    .gallery-title { margin-bottom: 3rem; }

    .property { padding: 6rem 0; }
    .amenities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .location { padding: 6rem 0; }
    .location-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .location-image img { height: 350px; }

    .reviews { padding: 6rem 0; }
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .reviews h2 { margin-bottom: 3rem; }

    .cta { padding: 6rem 0; }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .rating-content {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ─── Hero Luxury Load Animation ─── */

.hero-content > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeRise 1s ease forwards;
}

.hero-location { animation-delay: 0.5s; }
.hero-title { animation-delay: 0.9s; }
.hero-subtitle { animation-delay: 1.3s; }
.hero-cta { animation-delay: 1.7s; }
.hero-stats { animation-delay: 2.1s; }

@keyframes fadeRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── Lightweight Scroll Fade ─── */
.fade-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* Hero video only — no poster image */
.hero {
    background: var(--black);
}

/* ─── FAQ Section ─── */
.faq {
    padding: 120px 0;
}

.faq h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 3rem;
    text-align: center;
}

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

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-item:first-child {
    border-top: 1px solid #e5e5e5;
}

.faq-question {
    font-family: var(--sans);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    padding: 1.5rem 2rem 1.5rem 0;
    cursor: pointer;
    position: relative;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s ease;
}

details[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 0 1.5rem 0;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.faq-answer a {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 500;
}

.faq-answer a:hover {
    color: var(--accent);
}

/* ─── Productions Mention (discreet) ─── */
.productions-mention {
    padding: 2.5rem 0;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.productions-mention p {
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.productions-mention a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.productions-mention a:hover {
    color: var(--accent);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq {
        padding: 80px 0;
    }
    .productions-teaser {
        padding: 80px 0;
    }
}
