/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'DM Sans', sans-serif;
    color: #3D2B1F;
    background: #FDF6EE;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }

/* ─── Accent Colors ─── */
:root {
    --terracotta: #C0603A;
    --terracotta-dark: #A04E2E;
    --sand: #F5E6D3;
    --sand-light: #FDF6EE;
    --sand-dark: #E8D5C0;
    --brown: #3D2B1F;
    --brown-light: #6B5344;
    --white: #FFFFFF;
}
.accent { color: var(--terracotta); }
.accent-light { color: #F4A259; }
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    background: var(--sand);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.section-tag--light { color: #F4A259; background: rgba(255,255,255,0.15); }
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--brown);
    margin-bottom: 16px;
}
.section-title--light { color: var(--white); }
.section-desc {
    font-size: 1.1rem;
    color: var(--brown-light);
    max-width: 560px;
    line-height: 1.7;
}
.section-desc--light { color: rgba(255,255,255,0.85); }

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(192, 96, 58, 0.35);
}
.btn-primary:hover {
    background: var(--terracotta-dark);
    box-shadow: 0 6px 28px rgba(192, 96, 58, 0.45);
}
.btn-secondary {
    background: var(--white);
    color: var(--terracotta);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-secondary:hover {
    box-shadow: 0 6px 28px rgba(0,0,0,0.15);
}
.btn-full { width: 100%; justify-content: center; }
.btn-nav {
    background: var(--terracotta);
    color: var(--white);
    padding: 10px 22px;
    font-size: 0.875rem;
}

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 246, 238, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sand-dark);
    transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(61, 43, 31, 0.08); }
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    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: 700;
    font-size: 1.25rem;
    color: var(--brown);
}
.nav-logo svg { color: var(--terracotta); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a:not(.btn) {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brown-light);
    transition: color 0.2s;
    position: relative;
}
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.2s;
}
.nav-links a:not(.btn):hover { color: var(--terracotta); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--brown);
    padding: 8px;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
    background: var(--sand-light);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; opacity: 0.12; }
.shape-1 {
    width: 600px; height: 600px;
    background: var(--terracotta);
    top: -200px; right: -100px;
}
.shape-2 {
    width: 350px; height: 350px;
    background: #F4A259;
    bottom: -80px; left: -60px;
}
.shape-3 {
    width: 180px; height: 180px;
    background: var(--terracotta);
    top: 40%; left: 35%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.08;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--terracotta);
    background: var(--sand);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--brown);
    margin-bottom: 20px;
    line-height: 1.1;
}
.hero-desc {
    font-size: 1.15rem;
    color: var(--brown-light);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-photo {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(61, 43, 31, 0.15);
}
.hero-photo img { width: 100%; height: 420px; object-fit: cover; }
.stat-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(61, 43, 31, 0.12);
    display: flex;
    flex-direction: column;
    animation: float 4s ease-in-out infinite;
}
.stat-card--1 { bottom: -20px; left: -30px; animation-delay: 0s; }
.stat-card--2 { top: 40px; right: -20px; animation-delay: 1.3s; }
.stat-card--3 { bottom: 80px; right: -40px; animation-delay: 2.6s; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label { font-size: 0.78rem; color: var(--brown-light); font-weight: 500; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; color: var(--sand-light); }

/* ─── ROOMS ─── */
.rooms {
    padding: 100px 0;
    background: var(--sand-light);
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}
.room-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(61, 43, 31, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}
.room-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(61, 43, 31, 0.12); }
.room-photo { overflow: hidden; }
.room-photo img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s; }
.room-card:hover .room-photo img { transform: scale(1.05); }
.room-info { padding: 28px; }
.room-info h3 {
    font-size: 1.35rem;
    color: var(--brown);
    margin-bottom: 10px;
}
.room-info p {
    font-size: 0.92rem;
    color: var(--brown-light);
    margin-bottom: 20px;
    line-height: 1.65;
}
.room-features { display: flex; flex-direction: column; gap: 8px; }
.room-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--brown);
    font-weight: 500;
}
.room-features li svg { color: var(--terracotta); flex-shrink: 0; }
.rooms-cta {
    text-align: center;
    padding: 32px;
    background: var(--sand);
    border-radius: 20px;
}
.rooms-cta p { font-size: 1.05rem; color: var(--brown-light); margin-bottom: 16px; }
.rooms-cta .btn { margin: 0 auto; }

/* ─── WHY ─── */
.why {
    padding: 100px 0;
    background: var(--white);
}
.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.why-visual { position: relative; }
.why-photo-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(61, 43, 31, 0.12);
}
.why-photo-main img { width: 100%; height: 400px; object-fit: cover; }
.why-photo-accent {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(61, 43, 31, 0.15);
    border: 5px solid var(--white);
}
.why-photo-accent img { width: 400px; height: 260px; object-fit: cover; }
.geo-accent {
    position: absolute;
    top: -30px;
    left: -20px;
    color: var(--sand-dark);
    opacity: 0.6;
}
.why-content .section-tag { margin-bottom: 16px; }
.why-content .section-title { margin-bottom: 16px; }
.why-content .section-desc { margin-bottom: 40px; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature-card {
    padding: 24px;
    background: var(--sand-light);
    border-radius: 16px;
    transition: transform 0.2s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--terracotta);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 16px;
}
.feature-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 0.88rem;
    color: var(--brown-light);
    line-height: 1.6;
}

/* ─── AREA ─── */
.area {
    padding: 100px 0;
    background: var(--terracotta);
    position: relative;
    overflow: hidden;
}
.area-bg { position: absolute; inset: 0; pointer-events: none; }
.area-shape { position: absolute; border-radius: 50%; opacity: 0.1; }
.area-shape-1 { width: 400px; height: 400px; background: #F4A259; top: -100px; left: -100px; }
.area-shape-2 { width: 250px; height: 250px; background: var(--white); bottom: -60px; right: 10%; }
.area-shape-3 { width: 150px; height: 150px; background: #F4A259; top: 20%; right: -30px; }
.area-content { position: relative; z-index: 1; }
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.attraction-card {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    transition: transform 0.3s, background 0.3s;
}
.attraction-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.16); }
.attraction-img { overflow: hidden; }
.attraction-img img { width: 100%; height: 160px; object-fit: cover; }
.attraction-info { padding: 20px; }
.attraction-info h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}
.attraction-info p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

/* ─── CONTACT ─── */
.contact {
    padding: 100px 0;
    background: var(--sand-light);
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-details { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--sand);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--terracotta);
    margin-bottom: 4px;
}
.contact-item p { font-size: 0.95rem; color: var(--brown-light); line-height: 1.6; }
.contact-item a { color: var(--brown); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.contact-item a:hover { color: var(--terracotta); }
.contact-form-wrap {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(61, 43, 31, 0.08);
}
.contact-form h3 {
    font-size: 1.5rem;
    color: var(--brown);
    margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--sand-dark);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--brown);
    background: var(--sand-light);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 4px rgba(192, 96, 58, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B8A494; }
.form-group textarea { resize: vertical; }
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: #E8F5E9;
    border-radius: 12px;
    margin-top: 16px;
    text-align: center;
}
.form-success svg { color: #4CAF50; }
.form-success p { font-size: 0.95rem; color: #2E7D32; font-weight: 500; }

/* ─── FOOTER ─── */
.footer {
    background: var(--brown);
    color: var(--sand);
    padding: 60px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(245, 230, 211, 0.15);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--sand);
    margin-bottom: 16px;
}
.footer-logo svg { color: var(--terracotta); }
.footer-brand p { font-size: 0.9rem; color: rgba(245, 230, 211, 0.7); line-height: 1.7; }
.footer-brand a { color: var(--sand); transition: color 0.2s; }
.footer-brand a:hover { color: var(--terracotta); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(245, 230, 211, 0.7);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--terracotta); }
.footer-cta p { font-size: 0.9rem; color: rgba(245, 230, 211, 0.7); margin-bottom: 16px; }
.footer-bottom {
    padding: 24px 0;
    text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(245, 230, 211, 0.4); }

/* ─── MOBILE NAV ─── */
@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 246, 238, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--sand-dark);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        box-shadow: 0 8px 24px rgba(61,43,31,0.1);
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a:not(.btn) { font-size: 1.05rem; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 520px; }
    .stat-card--1 { left: 0; }
    .stat-card--2 { right: 0; }
    .stat-card--3 { right: 10px; bottom: 60px; }
    .rooms-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .why-layout { grid-template-columns: 1fr; }
    .why-photo-accent { right: 0; }
    .attractions-grid { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { justify-content: center; }
    .footer-links { align-items: center; }
    .footer-cta { text-align: center; }
}
@media (max-width: 600px) {
    .hero { padding: 100px 0 80px; }
    .hero-title { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .stat-card { padding: 12px 16px; }
    .stat-number { font-size: 1.2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .attractions-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px; }
    .why-photo-accent { position: relative; bottom: 0; right: 0; margin-top: 16px; }
    .why-photo-accent img { width: 100%; }
}
