/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --charcoal: #2C2C2C;
    --charcoal-light: #3D3D3D;
    --coral: #F4845F;
    --coral-dark: #E06D48;
    --coral-light: #F9A88A;
    --cream: #FAF7F4;
    --cream-dark: #F3EDE8;
    --sand: #E8DDD3;
    --sand-light: #F2EBE4;
    --ocean: #7FB5C4;
    --ocean-light: #B8D4E0;
    --white: #FFFFFF;
    --text: #2C2C2C;
    --text-light: #6B6B6B;
    --text-muted: #999999;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(44,44,44,0.06);
    --shadow-md: 0 8px 30px rgba(44,44,44,0.08);
    --shadow-lg: 0 20px 60px rgba(44,44,44,0.10);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Lora', serif;
    line-height: 1.2;
    font-weight: 500;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--charcoal); color: var(--white);
    padding: 8px 16px; border-radius: var(--radius-sm);
    z-index: 9999; font-weight: 500;
}
.skip-link:focus { top: 16px; }

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

/* ─── Buttons ─── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px;
    font-weight: 500; font-size: 0.95rem;
    transition: var(--transition); letter-spacing: 0.01em;
}
.btn-coral {
    background: var(--coral); color: var(--white);
    box-shadow: 0 4px 20px rgba(244,132,95,0.35);
}
.btn-coral:hover {
    background: var(--coral-dark);
    box-shadow: 0 8px 30px rgba(244,132,95,0.45);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent; color: var(--charcoal);
    border: 1.5px solid var(--sand);
}
.btn-outline:hover {
    border-color: var(--coral); color: var(--coral);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white); color: var(--charcoal);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-full { width: 100%; justify-content: center; }

/* ─── Section helpers ─── */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-tag {
    display: inline-block;
    font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--coral); margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal); margin-bottom: 16px;
}
.section-desc {
    font-size: 1.1rem; color: var(--text-light);
    line-height: 1.7;
}
.accent { color: var(--coral); }

/* ─── Header ─── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(250,247,244,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232,221,211,0.5);
    transition: var(--transition);
}
.site-header.scrolled {
    background: rgba(250,247,244,0.95);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Lora', serif;
    font-size: 1.1rem; font-weight: 600;
    color: var(--charcoal);
}
.logo-icon { color: var(--coral); }

.logo-light { color: var(--white); }
.logo-light .logo-icon { color: var(--coral-light); }
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 12px; line-height: 1.6; }

.nav-list {
    display: flex; align-items: center; gap: 32px;
}
.nav-list a {
    font-size: 0.9rem; font-weight: 400;
    color: var(--text-light);
    transition: color 0.2s;
    position: relative;
}
.nav-list a:not(.btn):hover { color: var(--charcoal); }
.nav-list a:not(.btn)::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0; width: 0; height: 1.5px;
    background: var(--coral); transition: width 0.3s;
}
.nav-list a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
    display: none; flex-direction: column;
    gap: 5px; padding: 8px;
}
.hamburger {
    display: block; width: 22px; height: 2px;
    background: var(--charcoal); border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--sand-light) 50%, var(--cream-dark) 100%);
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(244,132,95,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute; bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(127,181,196,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
    position: relative; z-index: 1;
}
.hero-tag {
    font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--coral); margin-bottom: 20px;
}
.hero-headline {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1.15; color: var(--charcoal);
    margin-bottom: 24px;
}
.hero-headline .accent {
    color: var(--coral);
    font-style: italic;
}
.hero-sub {
    font-size: 1.15rem; color: var(--text-light);
    line-height: 1.75; margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
    display: flex; align-items: center; gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
    font-family: 'Lora', serif;
    font-size: 1.8rem; font-weight: 600;
    color: var(--charcoal); line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.stat-divider {
    width: 1px; height: 40px;
    background: var(--sand);
}

.hero-image { position: relative; }
.hero-img-wrap {
    position: relative; border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
    position: absolute; inset: 0;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255,255,255,0.2);
    pointer-events: none;
}
.hero-float-card {
    position: absolute; bottom: -20px; left: -30px;
    background: var(--white);
    padding: 14px 20px; border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; font-weight: 500; color: var(--charcoal);
}
.hero-float-card svg { color: #FBBF24; }

.hero-wave {
    position: absolute; bottom: 0; left: 0; right: 0;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ─── Lodging ─── */
.lodging { background: var(--cream); }
.lodging-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.room-img {
    height: 260px; overflow: hidden;
}
.room-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.room-card:hover .room-img img { transform: scale(1.05); }
.room-body { padding: 28px; }
.room-name {
    font-size: 1.4rem; margin-bottom: 10px;
    color: var(--charcoal);
}
.room-desc {
    font-size: 0.95rem; color: var(--text-light);
    line-height: 1.65; margin-bottom: 20px;
}
.room-amenities { display: flex; flex-direction: column; gap: 10px; }
.room-amenities li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; color: var(--text-light);
}
.room-amenities li svg { color: var(--coral); flex-shrink: 0; }

/* ─── Experience ─── */
.experience {
    background: linear-gradient(180deg, var(--cream) 0%, var(--sand-light) 100%);
}
.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.exp-img-stack { position: relative; height: 600px; }
.exp-img-stack img {
    position: absolute; border-radius: var(--radius-lg);
    object-fit: cover; box-shadow: var(--shadow-lg);
}
.exp-img-stack img:first-child {
    width: 320px; height: 420px;
    top: 0; left: 0; z-index: 1;
}
.exp-img-stack img:last-child {
    width: 260px; height: 340px;
    bottom: 0; right: 0; z-index: 2;
}
.exp-content .section-tag { text-align: left; }
.exp-content .section-title { text-align: left; margin-bottom: 16px; }
.exp-content .section-desc { text-align: left; margin-bottom: 40px; }

.features-list { display: flex; flex-direction: column; gap: 28px; }
.feature {
    display: flex; gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.feature:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}
.feature-icon {
    flex-shrink: 0; width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
}
.feature h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem; font-weight: 600;
    margin-bottom: 6px; color: var(--charcoal);
}
.feature p {
    font-size: 0.9rem; color: var(--text-light);
    line-height: 1.65;
}

/* ─── Location ─── */
.location { background: var(--cream); }
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: stretch;
}
.location-content .section-tag { text-align: left; }
.location-content .section-title { text-align: left; margin-bottom: 16px; }
.location-content .section-desc { text-align: left; margin-bottom: 36px; }

.location-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.loc-item {
    display: flex; gap: 16px; align-items: flex-start;
}
.loc-item svg { color: var(--coral); flex-shrink: 0; margin-top: 2px; }
.loc-item strong {
    display: block; font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text-muted); margin-bottom: 4px;
}
.loc-item span, .loc-item a {
    font-size: 1rem; color: var(--charcoal);
    line-height: 1.5;
}
.loc-item a:hover { color: var(--coral); }

.location-map { border-radius: var(--radius-lg); overflow: hidden; min-height: 420px; box-shadow: var(--shadow-md); }

/* ─── Gallery ─── */
.gallery { background: var(--sand-light); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 20px;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden; position: relative;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(44,44,44,0.15) 0%, transparent 40%);
    opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.tall { grid-row: span 2; }
.gi-1 { grid-column: 1 / 5; }
.gi-2 { grid-column: 5 / 9; }
.gi-3 { grid-column: 9 / 13; }
.gi-4 { grid-column: 1 / 5; }
.gi-5 { grid-column: 5 / 9; grid-row: span 2; }
.gi-6 { grid-column: 9 / 13; }

/* ─── CTA ─── */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    position: relative; overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(244,132,95,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-inner {
    text-align: center; position: relative; z-index: 1;
    max-width: 640px; margin: 0 auto;
}
.cta-tag {
    font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--coral-light); margin-bottom: 16px;
}
.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white); margin-bottom: 16px;
}
.cta-desc {
    font-size: 1.1rem; color: rgba(255,255,255,0.65);
    line-height: 1.7; margin-bottom: 36px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta .btn-white:hover { background: var(--cream); }

/* ─── Contact ─── */
.contact { background: var(--cream); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
}
.contact-info .section-tag { text-align: left; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }
.contact-info .section-desc { text-align: left; margin-bottom: 36px; }

.contact-methods { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-method {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.contact-method:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.cm-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); flex-shrink: 0;
}
.contact-method span {
    font-size: 0.95rem; color: var(--charcoal);
    line-height: 1.5;
}
.contact-method a:hover { color: var(--coral); }

.contact-form-wrap {
    background: var(--white);
    padding: 40px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
    font-size: 0.85rem; font-weight: 500;
    color: var(--text-light);
}
.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1.5px solid var(--sand);
    border-radius: var(--radius-sm);
    font-size: 0.95rem; color: var(--charcoal);
    background: var(--cream);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(244,132,95,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: none; text-align: center;
    padding: 16px; margin-top: 16px;
    background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
    border-radius: var(--radius-sm);
    color: #2E7D32; font-weight: 500;
}
.form-success.show { display: block; }

/* ─── Footer ─── */
.site-footer {
    background: var(--charcoal);
    padding: 72px 0 0;
    color: var(--white);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px; padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links h4, .footer-contact h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-contact a {
    font-size: 0.95rem; color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--coral-light); }
.footer-contact li:last-child { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.6; }
.footer-bottom {
    display: flex; justify-content: space-between;
    align-items: center; padding: 24px 0;
    font-size: 0.85rem; color: rgba(255,255,255,0.35);
}

/* ─── Animations ─── */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-grid { gap: 40px; }
    .exp-grid { gap: 48px; }
    .exp-img-stack { height: 480px; }
    .exp-img-stack img:first-child { width: 260px; height: 340px; }
    .exp-img-stack img:last-child { width: 200px; height: 260px; }
    .gallery-grid { grid-template-rows: repeat(2, 220px); }
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { max-width: 480px; margin: 0 auto; }
    .hero-float-card { left: 50%; transform: translateX(-50%); bottom: -16px; }

    .lodging-grid { grid-template-columns: repeat(2, 1fr); }
    .exp-grid { grid-template-columns: 1fr; }
    .exp-visual { order: -1; }
    .exp-img-stack { height: 400px; margin: 0 auto; max-width: 400px; }
    .location-grid { grid-template-columns: 1fr; }
    .location-map { min-height: 300px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-list {
        position: fixed; top: 72px; left: 0; right: 0;
        background: rgba(250,247,244,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column; padding: 32px 24px;
        gap: 20px;
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        border-bottom: 1px solid var(--sand);
        box-shadow: var(--shadow-md);
    }
    .nav-list.open {
        transform: translateY(0); opacity: 1;
    }
    .nav-list .btn { width: 100%; justify-content: center; }

    .section { padding: 72px 0; }
    .section-header { margin-bottom: 48px; }

    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-headline { font-size: clamp(1.8rem, 6vw, 2.6rem); }
    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { width: 40px; height: 1px; }

    .lodging-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }
    .gi-1 { grid-column: 1 / 2; grid-row: span 1; }
    .gi-2 { grid-column: 2 / 3; }
    .gi-3 { grid-column: 1 / 2; grid-row: span 1; }
    .gi-4 { grid-column: 2 / 3; }
    .gi-5 { grid-column: 1 / 3; grid-row: span 1; }
    .gi-6 { grid-column: 1 / 3; }
    .gallery-item.tall { grid-row: span 1; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}
