/*
 Theme Name:   Stay in Symi
 Theme URI:    https://stayinsymi.com
 Description:  Child theme for Astra - Stay in Symi hospitality website
 Author:       Stay in Symi
 Template:     astra
 Version:      1.0.0
 Text Domain:  stayinsymi
*/

/* ===== RESET & VARIABLES ===== */
:root {
    --white: #FAFAF8;
    --cream: #F5F2ED;
    --sand: #E8E2D8;
    --warm-gray: #9B9588;
    --stone: #6B6560;
    --charcoal: #1B3A6B;
    --deep: #122B52;
    --navy: #1B3A6B;
    --navy-light: #2A4F8A;
    --sea: #4A7C8A;
    --sea-light: #6BA3B0;
    --gold: #C4A265;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --container: 1200px;
    --gap: clamp(1rem, 3vw, 2rem);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body) !important;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.7;
    font-weight: 300;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* Hide Astra default header/footer */
.ast-above-header, .ast-below-header,
.site-header, #ast-desktop-header,
.ast-mobile-header-wrap,
.site-footer, .ast-footer-overlay { display: none !important; }

.sis-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}

/* ===== CUSTOM NAV ===== */
.sis-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.sis-nav.scrolled {
    background: rgba(250,250,248,0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

/* Inner page nav (sticky, white bg) */
.sis-nav.sis-nav--inner {
    position: sticky;
    background: rgba(250,250,248,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--sand);
}

.sis-nav .nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.sis-nav--inner .nav-inner { height: 68px; }

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: 0.02em;
    transition: color 0.4s;
    position: relative;
    z-index: 10001;
}

.sis-nav--inner .nav-logo { color: var(--charcoal); }
.sis-nav.scrolled .nav-logo { color: var(--charcoal); }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

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

.sis-nav--inner .nav-links a { color: var(--stone); }
.sis-nav.scrolled .nav-links a { color: var(--stone); }
.nav-links a:hover { color: var(--navy); }

.nav-cta {
    padding: 0.55rem 1.3rem;
    background: transparent;
    color: var(--white) !important;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 4px;
    font-size: 0.8rem !important;
    letter-spacing: 0.06em;
    transition: all 0.3s;
}

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

.sis-nav--inner .nav-cta {
    color: var(--navy) !important;
    border-color: var(--navy);
}

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

.sis-nav.scrolled .nav-cta {
    color: var(--navy) !important;
    border-color: var(--navy);
}

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

/* ===== MOBILE MENU ===== */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 28px;
    height: 20px;
    position: relative;
    z-index: 10001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.sis-nav--inner .nav-toggle span { background: var(--charcoal); }

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

.nav-toggle.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }
.nav-toggle.active span { background: var(--white); }

.sis-nav.scrolled .nav-toggle span { background: var(--charcoal); }

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh; height: 100dvh;
    background: rgba(18,43,82,0.97);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.mobile-overlay.open { display: flex; }

.mobile-overlay a {
    color: rgba(255,255,255,0.85) !important;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mobile-overlay a:hover { color: var(--navy-light) !important; }

.mobile-overlay .nav-cta {
    margin-top: 0.5rem;
    color: rgba(255,255,255,0.85) !important;
    border-color: rgba(255,255,255,0.6);
}

body.menu-open .sis-nav {
    z-index: 10000;
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom-color: transparent !important;
    transition: none !important;
}

body.menu-open .nav-logo { color: var(--white) !important; }
body.menu-open .nav-toggle span { background: var(--white) !important; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid var(--navy);
}

.btn-primary:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: clamp(4rem, 10vh, 8rem);
}

.hero-content .sis-container {
    max-width: 800px;
    margin: 0;
    padding: 0 var(--gap);
    margin-left: max(var(--gap), calc((100vw - var(--container)) / 2));
}

.hero-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 1.25rem;
}

.hero p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.hero .btn-primary {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.hero .btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* ===== SECTIONS ===== */
.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 4rem);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--stone);
    max-width: 550px;
    margin: 0 auto;
}

/* ===== INTRO ===== */
.intro { padding: clamp(5rem, 10vw, 8rem) 0; }

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.intro-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.intro-text p { color: var(--stone); font-size: 1rem; margin-bottom: 1rem; }
.intro-text p:last-of-type { margin-bottom: 2rem; }

.intro-image {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

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

/* ===== FEATURES STRIP ===== */
.features-strip { background: var(--cream); padding: clamp(3rem, 5vw, 4rem) 0; }

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }

.feature-item { padding: 1rem; }

.feature-icon { width: 40px; height: 40px; margin: 0 auto 1rem; color: var(--navy); }

.feature-item h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.feature-item p { font-size: 0.88rem; color: var(--stone); line-height: 1.6; }

/* ===== PROPERTY CARDS ===== */
.properties { padding: clamp(5rem, 10vw, 8rem) 0; }

.carousel-wrapper { position: relative; }

.carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 1rem;
}

.carousel-track::-webkit-scrollbar { display: none; }

.property-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 320px;
    scroll-snap-align: start;
    border-radius: 6px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--sand);
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
}

a.property-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; }

.property-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.property-card-image {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
}

.property-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.property-card:hover .property-card-image img { transform: scale(1.04); }

.property-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--charcoal);
    font-weight: 500;
}

.property-card-body { padding: 1.25rem 1.5rem 1.5rem; }

.property-card-body .property-location {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 0.4rem;
}

.property-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 400;
}

.property-card-body p {
    font-size: 0.9rem;
    color: var(--stone);
    line-height: 1.55;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--warm-gray); }
.property-meta span { display: flex; align-items: center; gap: 0.35rem; }
.property-meta svg { width: 14px; height: 14px; }

.carousel-nav { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }

.carousel-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--sand);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}

.carousel-btn:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }
.carousel-btn svg { width: 18px; height: 18px; }

/* ===== ISLAND SECTION ===== */
.island { background: var(--deep); color: var(--white); padding: clamp(5rem, 10vw, 8rem) 0; }

.island-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

.island-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.island-images .img-tall { grid-row: span 2; border-radius: 6px; overflow: hidden; }
.island-images .img-short { border-radius: 6px; overflow: hidden; }
.island-images img { width: 100%; height: 100%; object-fit: cover; }

.island-text .section-label { color: var(--gold); }

.island-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.island-text p { color: rgba(255,255,255,0.7); margin-bottom: 1rem; }

.island-text .btn-outline { margin-top: 1rem; border-color: rgba(255,255,255,0.3); }
.island-text .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: clamp(5rem, 10vw, 8rem) 0; background: var(--cream); }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid var(--sand);
}

.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.1em; }

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--stone);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.testimonial-author { font-size: 0.82rem; font-weight: 500; color: var(--charcoal); }
.testimonial-author span { color: var(--warm-gray); font-weight: 300; }

/* ===== CTA SECTION ===== */
.cta-section { padding: clamp(5rem, 10vw, 7rem) 0; text-align: center; }

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
}

.cta-section p { color: var(--stone); max-width: 550px; margin: 0 auto 2rem; }

.cta-benefits { display: flex; justify-content: center; gap: 2.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }

.cta-benefit { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--stone); }
.cta-benefit svg { width: 18px; height: 18px; color: var(--navy); }

/* ===== SINGLE PROPERTY PAGE ===== */
.breadcrumb { padding: 1rem 0; font-size: 0.82rem; color: var(--warm-gray); }
.breadcrumb a { color: var(--stone); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { margin: 0 0.4rem; }

.gallery { margin-bottom: clamp(2rem, 4vw, 3rem); }

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 6px;
    border-radius: 8px;
    overflow: hidden;
    max-height: 520px;
}

.gallery-grid .gallery-main { grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: opacity 0.3s; }
.gallery-grid img:hover { opacity: 0.9; }

.property-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: clamp(2rem, 5vw, 4rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.property-main { min-width: 0; }

.property-header {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--sand);
    margin-bottom: 2rem;
}

.property-header .property-badge {
    position: static;
    display: inline-block;
    background: var(--cream);
    color: var(--navy);
    padding: 0.25rem 0.7rem;
    border-radius: 3px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.property-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.property-header .property-location {
    font-size: 0.92rem;
    color: var(--stone);
    margin-bottom: 1.25rem;
}

.property-header .property-location svg { width: 15px; height: 15px; vertical-align: -2px; margin-right: 0.3rem; }

.property-specs { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.spec { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--stone); }
.spec svg { width: 18px; height: 18px; color: var(--navy); }

.property-section { margin-bottom: 2.5rem; }

.property-section h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.property-section p { color: var(--stone); margin-bottom: 1rem; }

.highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--stone);
    padding: 0.6rem 0;
}

.highlight-item svg { width: 16px; height: 16px; color: var(--navy); flex-shrink: 0; margin-top: 2px; }

.location-items { display: flex; flex-direction: column; gap: 0.6rem; }

.location-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--stone); }
.location-item svg { width: 16px; height: 16px; color: var(--navy); flex-shrink: 0; }
.location-item strong { font-weight: 500; color: var(--charcoal); }

/* ===== SIDEBAR BOOKING CARD ===== */
.property-sidebar { position: relative; }

.booking-card {
    position: sticky;
    top: 88px;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 8px;
    padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.booking-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; margin-bottom: 0.5rem; }
.booking-card .tagline { font-size: 0.85rem; color: var(--stone); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--sand); }

.booking-specs { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.booking-spec { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: var(--stone); }
.booking-spec svg { width: 16px; height: 16px; color: var(--navy); }

.btn-book {
    display: block; width: 100%; text-align: center;
    padding: 0.9rem;
    background: var(--navy); color: var(--white);
    font-size: 0.88rem; font-weight: 400;
    letter-spacing: 0.06em; text-transform: uppercase;
    border-radius: 4px; transition: background 0.3s;
    margin-bottom: 0.75rem;
}

.btn-book:hover { background: var(--navy-light); }

.btn-whatsapp {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    width: 100%; text-align: center; padding: 0.9rem;
    background: transparent; color: var(--navy);
    font-size: 0.88rem; font-weight: 400;
    letter-spacing: 0.06em; text-transform: uppercase;
    border-radius: 4px; border: 1.5px solid var(--navy);
    transition: all 0.3s;
}

.btn-whatsapp:hover { background: var(--navy); color: var(--white); }
.btn-whatsapp svg { width: 18px; height: 18px; }

.booking-note { margin-top: 1.25rem; text-align: center; font-size: 0.78rem; color: var(--warm-gray); }

.booking-perks { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--sand); display: flex; flex-direction: column; gap: 0.6rem; }
.perk { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--stone); }
.perk svg { width: 15px; height: 15px; color: var(--navy); }

.back-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: var(--navy); margin-bottom: 2rem; transition: opacity 0.3s; }
.back-link:hover { opacity: 0.7; }
.back-link svg { width: 16px; height: 16px; }

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

.lightbox.open { display: flex; }

.lightbox-content { max-width: 90vw; max-height: 85vh; display: flex; align-items: center; justify-content: center; }
.lightbox-content img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 4px; }

.lightbox-close { position: absolute; top: 20px; right: 20px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 20001; }
.lightbox-close svg { width: 28px; height: 28px; stroke: rgba(255,255,255,0.8); transition: stroke 0.3s; }
.lightbox-close:hover svg { stroke: white; }

.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.1); border: none; cursor: pointer;
    padding: 12px; border-radius: 50%; transition: background 0.3s;
}

.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev svg, .lightbox-next svg { width: 28px; height: 28px; stroke: rgba(255,255,255,0.8); }

.lightbox-counter {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.6); font-size: 0.85rem; letter-spacing: 0.06em;
}

/* ===== CUSTOM FOOTER ===== */
.sis-footer { background: var(--charcoal); color: rgba(255,255,255,0.6); padding: 4rem 0 2rem; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }

.footer-brand h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.65; }

.footer-col h4 { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: 1.25rem; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem;
}

.footer-social { display: flex; gap: 1rem; }

.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.footer-social svg { width: 16px; height: 16px; }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .intro-grid, .island-grid { grid-template-columns: 1fr; }
    .intro-image { max-height: 400px; aspect-ratio: 16/9; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .property-layout { grid-template-columns: 1fr; }
    .property-sidebar { order: -1; }
    .booking-card { position: static; max-width: 500px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .property-card { flex: 0 0 calc(85vw); min-width: unset; }
    .features-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .island-images { grid-template-columns: 1fr; }
    .island-images .img-tall { grid-row: span 1; max-height: 300px; }
    .island-images .img-short { max-height: 200px; }
    .cta-benefits { flex-direction: column; align-items: center; gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; max-height: none; }
    .gallery-grid .gallery-main { grid-column: span 2; grid-row: span 1; max-height: 260px; }
    .gallery-grid img { min-height: 140px; }
    .highlights-grid { grid-template-columns: 1fr; }
}
