*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest-dark: #1a3c2a;
    --forest-mid: #2d5a3f;
    --forest-light: #4a7c5c;
    --forest-pale: #a8c5a0;
    --off-white: #f7f5f0;
    --cream: #faf9f6;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #7a7a7a;
    --line: rgba(26, 60, 42, 0.12);
    --line-strong: rgba(26, 60, 42, 0.25);
    --font-sans: 'Inter', -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: all 0.5s var(--ease);
}

.nav.scrolled {
    background: rgba(247, 245, 240, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.875rem 0;
    box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--off-white);
    transition: color 0.3s var(--ease);
}

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

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

.nav-links a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(247, 245, 240, 0.8);
    transition: color 0.3s var(--ease);
    position: relative;
}

.nav.scrolled .nav-links a {
    color: var(--text-mid);
}

.nav-links a:hover {
    color: var(--off-white);
}

.nav.scrolled .nav-links a:hover {
    color: var(--forest-dark);
}

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

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

.nav-cta {
    border: 1px solid rgba(247, 245, 240, 0.4) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    transition: all 0.3s var(--ease) !important;
}

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

.nav-cta:hover {
    background: var(--off-white) !important;
    color: var(--forest-dark) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--off-white);
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.nav.scrolled .nav-toggle span {
    background: var(--forest-dark);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 60, 42, 0.82) 0%,
        rgba(45, 90, 63, 0.70) 40%,
        rgba(74, 124, 92, 0.55) 70%,
        rgba(168, 197, 160, 0.40) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    padding: 0 2rem;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--forest-pale);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--off-white);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}

.hero-subtitle {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(247, 245, 240, 0.8);
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.6s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.8s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.btn-primary {
    background: var(--off-white);
    color: var(--forest-dark);
    border-color: var(--off-white);
}

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

.btn-outline {
    background: transparent;
    color: var(--off-white);
    border-color: rgba(247, 245, 240, 0.4);
}

.btn-outline:hover {
    border-color: var(--off-white);
    background: rgba(247, 245, 240, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    animation: fadeIn 0.8s var(--ease) 1.2s forwards;
}

.hero-scroll span {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(247, 245, 240, 0.5);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(247, 245, 240, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Section shared ── */
section {
    padding: 7rem 0;
}

.section-label {
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--forest-light);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--forest-dark);
    margin-bottom: 1.5rem;
}

/* ── About ── */
.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-mid);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

/* ── Rooms ── */
.rooms {
    background: var(--off-white);
}

.rooms .container {
    text-align: center;
}

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

.room-card {
    background: var(--cream);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(26, 60, 42, 0.1);
}

.room-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.room-info {
    padding: 1.75rem;
    text-align: left;
}

.room-info h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--forest-dark);
    margin-bottom: 0.75rem;
}

.room-info p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
}

.rooms-note {
    margin-top: 2.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* ── Amenities ── */
.amenities {
    background: var(--cream);
}

.amenities .container {
    text-align: center;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.75rem 1.5rem;
    background: var(--off-white);
    border-radius: 4px;
    border: 1px solid var(--line);
    transition: all 0.3s var(--ease);
    text-align: left;
}

.amenity-item:hover {
    border-color: var(--forest-pale);
    background: white;
}

.amenity-item svg {
    flex-shrink: 0;
    color: var(--forest-light);
}

.amenity-item span {
    font-size: 0.9375rem;
    color: var(--text-dark);
    font-weight: 400;
}

/* ── Location ── */
.location {
    background: var(--off-white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.address-block {
    font-style: normal;
    margin-bottom: 2rem;
}

.address-block p {
    font-size: 1.0625rem;
    color: var(--text-dark);
    line-height: 1.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--forest-mid);
    transition: color 0.3s var(--ease);
}

.contact-link:hover {
    color: var(--forest-dark);
}

.location-map img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
}

.map-note {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-light);
    font-style: italic;
}

/* ── CTA / Contact ── */
.cta {
    background: var(--forest-dark);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.cta-text .section-title,
.cta-text .section-label {
    color: var(--off-white);
}

.cta-text .section-label {
    color: var(--forest-pale);
}

.cta-text p {
    font-size: 1.0625rem;
    color: rgba(247, 245, 240, 0.7);
    line-height: 1.8;
    margin-top: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--forest-pale);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--off-white);
    background: rgba(247, 245, 240, 0.08);
    border: 1px solid rgba(247, 245, 240, 0.15);
    border-radius: 4px;
    padding: 0.875rem 1rem;
    outline: none;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(247, 245, 240, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--forest-pale);
    background: rgba(247, 245, 240, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(168, 197, 160, 0.15);
    border: 1px solid rgba(168, 197, 160, 0.3);
    border-radius: 4px;
    font-size: 0.9375rem;
    color: var(--forest-pale);
}

.form-success.show {
    display: flex;
}

.form-success svg {
    flex-shrink: 0;
    color: var(--forest-pale);
}

/* ── Footer ── */
.footer {
    background: #142e20;
    padding: 3rem 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--off-white);
}

.footer-brand p {
    font-size: 0.8125rem;
    color: rgba(247, 245, 240, 0.5);
}

.footer-contact {
    display: flex;
    gap: 1.5rem;
}

.footer-contact a {
    font-size: 0.875rem;
    color: rgba(247, 245, 240, 0.6);
    transition: color 0.3s var(--ease);
}

.footer-contact a:hover {
    color: var(--off-white);
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(247, 245, 240, 0.3);
    width: 100%;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(247, 245, 240, 0.08);
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

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

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

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-grid,
    .location-grid,
    .cta-inner {
        gap: 3rem;
    }
}

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

    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(26, 60, 42, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s var(--ease);
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 1rem;
        color: rgba(247, 245, 240, 0.8) !important;
    }

    .nav-links a:hover {
        color: var(--off-white) !important;
    }

    .nav-toggle {
        display: flex;
    }

    .about-grid,
    .location-grid,
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .nav-inner {
        padding: 0 1.25rem;
    }

    section {
        padding: 4rem 0;
    }
}
