/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    color: #2D2D2D;
    background: #FFFAF8;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ───────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.25; }
.lead { font-size: 1.125rem; color: #555; }

/* ── Section Tags ─────────────────────────────────── */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #F0706B;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #2D2D2D;
    margin-bottom: 16px;
}
.section-sub { font-size: 1.05rem; color: #666; max-width: 560px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}
.btn-coral {
    background: #F0706B;
    color: #fff;
    border-color: #F0706B;
}
.btn-coral:hover { background: #E55A54; border-color: #E55A54; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,112,107,0.3); }
.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-full { width: 100%; justify-content: center; }

/* ── Nav ──────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.nav.scrolled {
    background: rgba(255,250,248,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: #2D2D2D;
}
.nav.scrolled .nav-logo { color: #2D2D2D; }
.hero .nav-logo { color: #fff; }
.nav.scrolled .hero .nav-logo { color: #2D2D2D; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.85); transition: color 0.2s; }
.nav.scrolled .nav-links a { color: #555; }
.nav-links a:hover { color: #F0706B; }
.nav-links .btn-coral { color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.nav.scrolled .nav-toggle span { background: #2D2D2D; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45,45,45,0.72) 0%, rgba(45,45,45,0.45) 60%, rgba(240,112,107,0.2) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}
.hero-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 24px;
    padding: 48px 44px;
    color: #fff;
}
.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FADCD0;
    margin-bottom: 20px;
    background: rgba(240,112,107,0.25);
    padding: 6px 14px;
    border-radius: 50px;
}
.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.stat-card {
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.16); }
.stat-card svg { color: #F0706B; }
.stat-label { font-size: 0.88rem; font-weight: 500; color: #2D2D2D; }

/* ── About ────────────────────────────────────────── */
.about { padding: 110px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { position: relative; }
.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
    border: 5px solid #FFFAF8;
}
.about-img-secondary img { width: 240px; height: 180px; object-fit: cover; }
.about-text { padding: 8px 0; }
.about-text .section-title { margin-top: 8px; }
.about-text p { color: #555; margin-bottom: 16px; }
.about-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #444;
}

/* ── Sites ────────────────────────────────────────── */
.sites {
    padding: 110px 0;
    background: linear-gradient(180deg, #FFFAF8 0%, #FFF0EC 100%);
}
.sites-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.site-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.site-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.site-card-img { height: 220px; overflow: hidden; }
.site-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.site-card:hover .site-card-img img { transform: scale(1.05); }
.site-card-body { padding: 28px 26px 32px; }
.site-card-body h3 { font-size: 1.25rem; margin-bottom: 10px; color: #2D2D2D; }
.site-card-body p { font-size: 0.92rem; color: #666; margin-bottom: 18px; line-height: 1.65; }
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #F0706B;
    transition: gap 0.2s;
}
.link-arrow:hover { gap: 10px; }

/* ── Amenities ────────────────────────────────────── */
.amenities { padding: 110px 0; }
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.amenity-card {
    background: #fff;
    border: 1px solid #F5E6E2;
    border-radius: 20px;
    padding: 36px 28px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.amenity-card:hover { border-color: #F0706B; box-shadow: 0 8px 32px rgba(240,112,107,0.1); transform: translateY(-4px); }
.amenity-icon {
    width: 56px;
    height: 56px;
    background: #FFF0EC;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.amenity-card h4 { font-size: 1.1rem; margin-bottom: 10px; color: #2D2D2D; }
.amenity-card p { font-size: 0.9rem; color: #666; line-height: 1.65; }

/* ── Gallery ──────────────────────────────────────── */
.gallery { padding: 110px 0; background: #FFF8F6; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { border-radius: 18px; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }

/* ── Contact ──────────────────────────────────────── */
.contact { padding: 110px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-details { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.contact-row { display: flex; gap: 16px; }
.contact-row-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #FFF0EC;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-row strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: #999; margin-bottom: 4px; }
.contact-row p { font-size: 0.95rem; color: #444; }
.contact-row a { color: #F0706B; font-weight: 500; transition: color 0.2s; }
.contact-row a:hover { color: #E55A54; }
.contact-form-wrap {
    background: #fff;
    border: 1px solid #F5E6E2;
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}
.contact-form h3 { font-size: 1.5rem; margin-bottom: 24px; color: #2D2D2D; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #888; }
.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    padding: 13px 16px;
    border: 1.5px solid #E8D8D4;
    border-radius: 12px;
    background: #FFFAF8;
    color: #2D2D2D;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #F0706B;
    box-shadow: 0 0 0 3px rgba(240,112,107,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: #E8F5E9;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #2E7D32;
    font-weight: 500;
}
.form-success.show { display: flex; }
.form-success svg { flex-shrink: 0; }

/* ── Map ──────────────────────────────────────────── */
.map-section { height: 380px; }
.map-section iframe { width: 100%; height: 100%; display: block; }

/* ── Footer ───────────────────────────────────────── */
.footer { background: #2D2D2D; color: rgba(255,255,255,0.7); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-logo { color: #fff; }
.footer h5 { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #F0706B; }
.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; line-height: 1.6; }
.footer-contact a { color: #F0706B; transition: color 0.2s; }
.footer-contact a:hover { color: #FADCD0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ── Mobile Menu ──────────────────────────────────── */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #FFFAF8;
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        box-shadow: -8px 0 32px rgba(0,0,0,0.1);
        transition: right 0.35s ease;
        z-index: 200;
    }
    .nav-links.open { right: 0; }
    .nav-links a { color: #2D2D2D; font-size: 1.05rem; }
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.3);
        z-index: 150;
    }
    .nav-overlay.show { display: block; }
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-stats { margin-top: 32px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img-secondary { right: 16px; bottom: -24px; }
    .sites-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .amenities-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .hero-card { padding: 32px 24px; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .amenities-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-img-secondary { display: none; }
}
