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

:root {
    --terracotta: #C25E3E;
    --terracotta-dark: #A84D30;
    --sand: #F4E8D1;
    --sand-light: #FDF8F0;
    --sand-dark: #E8D5B8;
    --charcoal: #2C2420;
    --charcoal-light: #4A3F38;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(44, 36, 32, 0.08);
    --shadow-lg: 0 12px 48px rgba(44, 36, 32, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--charcoal);
    background: var(--sand-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    color: var(--charcoal);
}

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; }

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

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.btn-cta {
    background: var(--terracotta);
    color: var(--white);
}
.btn-cta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(194, 94, 62, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--charcoal);
}
.btn-white:hover {
    background: var(--sand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    border: 2px solid var(--white);
    color: var(--white);
}
.btn-ghost:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: translateY(-2px);
}

/* ── Tag ──────────────────────────────────────────────────────── */
.tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
}

/* ── Section Title ─────────────────────────────────────────────── */
.section { padding: 100px 0; }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--charcoal-light);
}

/* ── Header ───────────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(44, 36, 32, 0.08);
    padding: 12px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    transition: var(--transition);
}

.site-header.scrolled .logo { color: var(--charcoal); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}

.nav-links a:hover { color: var(--white); }
.site-header.scrolled .nav-links a { color: var(--charcoal-light); }
.site-header.scrolled .nav-links a:hover { color: var(--charcoal); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.site-header.scrolled .nav-toggle span { background: var(--charcoal); }

/* ── 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(44, 36, 32, 0.72) 0%,
        rgba(44, 36, 32, 0.45) 50%,
        rgba(194, 94, 62, 0.3) 100%
    );
}

.hero-shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.hero-shape--tl {
    width: 420px;
    height: 420px;
    background: var(--terracotta);
    border-radius: 50%;
    top: -120px;
    left: -120px;
    opacity: 0.15;
}

.hero-shape--br {
    width: 600px;
    height: 600px;
    background: var(--sand);
    border-radius: 50%;
    bottom: -200px;
    right: -100px;
    opacity: 0.12;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding-top: 80px;
}

.hero-greeting {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 16px;
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.08;
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(244, 232, 209, 0.85);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    opacity: 0.6;
    animation: bobble 2s ease-in-out infinite;
}

@keyframes bobble {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── About ────────────────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-media {
    position: relative;
    height: 600px;
}

.about-media__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-media__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-media__accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid var(--sand-light);
    box-shadow: var(--shadow);
}

.about-media__accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text .section-title { margin-bottom: 24px; }

.about-text p {
    color: var(--charcoal-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

/* ── Sites ─────────────────────────────────────────────────────── */
.sites { background: var(--sand); }

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

.site-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.site-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.site-card--featured {
    border: 2px solid var(--terracotta);
}

.site-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    background: var(--terracotta);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
}

.site-card__img {
    height: 220px;
    overflow: hidden;
}

.site-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.site-card:hover .site-card__img img { transform: scale(1.05); }

.site-card__body {
    padding: 28px;
}

.site-card__body h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.site-card__body p {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    margin-bottom: 18px;
    line-height: 1.6;
}

.site-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.site-card__features li {
    background: var(--sand);
    color: var(--charcoal);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
}

/* ── Amenities ─────────────────────────────────────────────────── */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.amenity-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--terracotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.amenity-card:hover::before { transform: scaleX(1); }
.amenity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.amenity-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.amenity-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.amenity-card p {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    line-height: 1.65;
}

/* ── Area ──────────────────────────────────────────────────────── */
.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.area-text .section-title { margin-bottom: 20px; }
.area-text > p { color: var(--charcoal-light); font-size: 1.05rem; margin-bottom: 28px; }

.area-list { display: flex; flex-direction: column; gap: 16px; }

.area-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    line-height: 1.6;
}

.area-list__dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    background: var(--terracotta);
    border-radius: 50%;
    margin-top: 8px;
}

.area-media {
    position: relative;
    height: 600px;
}

.area-media__main {
    width: 80%;
    height: 85%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: absolute;
    top: 0;
    right: 0;
}

.area-media__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-media__floater {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 55%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 5px solid var(--sand-light);
    box-shadow: var(--shadow);
}

.area-media__floater img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── CTA Banner ────────────────────────────────────────────────── */
.cta-banner {
    background: var(--terracotta);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner__shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner__shape--1 {
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.06);
    top: -200px;
    left: -150px;
}

.cta-banner__shape--2 {
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.04);
    bottom: -100px;
    right: -50px;
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-banner__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner__text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
}

.cta-banner__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ── Contact ───────────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-title { margin-bottom: 20px; }
.contact-info > p { color: var(--charcoal-light); font-size: 1.05rem; margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 24px; }

.contact-details__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-details__item dt {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand);
    border-radius: var(--radius);
}

.contact-details__item dd a {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.6;
    transition: color var(--transition);
}

.contact-details__item dd a:hover { color: var(--terracotta); }

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal-light);
}

.form-group input,
.form-group textarea {
    font-family: inherit;
    font-size: 1rem;
    padding: 12px 16px;
    border: 2px solid var(--sand-dark);
    border-radius: var(--radius);
    background: var(--sand-light);
    color: var(--charcoal);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--charcoal-light);
    opacity: 0.6;
}

.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

.form-success {
    text-align: center;
    padding: 32px;
}

.form-success svg { margin: 0 auto 16px; }

.form-success p {
    font-size: 1.05rem;
    color: var(--charcoal-light);
}

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer {
    background: var(--charcoal);
    color: var(--sand);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(244, 232, 209, 0.12);
}

.footer-brand .logo { color: var(--sand); margin-bottom: 16px; }
.footer-brand p { color: rgba(244, 232, 209, 0.6); font-size: 0.95rem; line-height: 1.7; max-width: 300px; }

.footer-links h4,
.footer-contact h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    color: rgba(244, 232, 209, 0.6);
    font-size: 0.95rem;
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--sand); }

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(244, 232, 209, 0.4);
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .about-grid,
    .area-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-media,
    .area-media { height: 400px; }
    .sites-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }

    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--charcoal);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.4s ease;
        box-shadow: -8px 0 32px rgba(0,0,0,0.2);
    }

    .nav-links.open { right: 0; }
    .nav-links a { color: var(--sand) !important; font-size: 1.1rem; }
    .nav-links a:hover { color: var(--terracotta) !important; }

    .hero-shape--tl { width: 250px; height: 250px; left: -80px; top: -60px; }
    .hero-shape--br { width: 350px; height: 350px; right: -80px; bottom: -100px; }

    .hero-content { padding-top: 60px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }

    .sites-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .amenities-grid { grid-template-columns: 1fr; max-width: 480px; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-headline { font-size: 2.2rem; }
    .section-title { font-size: 1.75rem; }
}
