/* ── Custom Properties ── */
:root {
    --forest-dark: #1a3a2a;
    --forest-medium: #2d5a3f;
    --forest-light: #6b9e7a;
    --off-white: #f5f2eb;
    --warm-light: #e8e2d4;
    --gold: #c8b89a;
}

/* ── Base ── */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--off-white);
    color: var(--forest-dark);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
.font-cormorant {
    font-family: 'Cormorant Garamond', serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

/* ── Navigation ── */
nav {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

nav.scrolled {
    background: rgba(245, 242, 235, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(26, 58, 42, 0.08);
}

.nav-logo {
    color: var(--forest-dark);
}

nav.scrolled .nav-logo {
    color: var(--forest-dark);
}

.nav-link {
    color: var(--forest-dark);
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--forest-dark);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-menu-btn {
    color: var(--forest-dark);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

nav.scrolled .nav-menu-btn {
    color: var(--forest-dark);
}

/* ── Hero ── */
.hero-gradient {
    background: linear-gradient(160deg, #1a3a2a 0%, #2d5a3f 40%, #3d7a52 70%, #6b9e7a 100%);
}

.hero-pattern {
    background-image: radial-gradient(circle at 20% 80%, rgba(200, 184, 154, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.hero-eyebrow {
    color: var(--gold);
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-headline {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: var(--off-white);
    opacity: 0;
    animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-sub {
    color: rgba(245, 242, 235, 0.75);
    opacity: 0;
    animation: fadeUp 0.8s ease 0.7s forwards;
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--off-white);
    color: var(--forest-dark);
    padding: 14px 32px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--off-white);
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--off-white);
    padding: 14px 32px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 1px solid rgba(245, 242, 235, 0.4);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--off-white);
    background: rgba(245, 242, 235, 0.1);
}

/* ── Section Eyebrow ── */
.section-eyebrow {
    color: var(--forest-light);
}

/* ── Section Title ── */
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--forest-dark);
}

/* ── Dividers ── */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(26, 58, 42, 0.15), transparent);
    margin: 0;
}

/* ── Amenity Card ── */
.amenity-card {
    padding: 28px;
    border: 1px solid rgba(26, 58, 42, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.amenity-card:hover {
    border-color: rgba(26, 58, 42, 0.25);
    box-shadow: 0 8px 32px rgba(26, 58, 42, 0.08);
    transform: translateY(-2px);
}

.amenity-icon {
    width: 24px;
    height: 24px;
    color: var(--forest-light);
    margin-bottom: 14px;
}

/* ── Location Feature ── */
.location-feature {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(26, 58, 42, 0.1);
}

.location-feature:last-of-type {
    border-bottom: none;
}

/* ── Form ── */
.form-input {
    font-size: 0.95rem;
}

.form-input::placeholder {
    color: rgba(107, 158, 122, 0.5);
}

/* ── Reveal Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── Keyframes ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Mobile Menu ── */
.mobile-menu-link {
    color: var(--forest-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: var(--forest-light);
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .hero-headline {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }
}
