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

:root {
    --green-900: #1a3a25;
    --green-800: #2D5A3D;
    --green-700: #3d7a52;
    --green-600: #4d9663;
    --cream: #FAF8F5;
    --cream-dark: #F2EFE9;
    --white: #FFFFFF;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #7a7a7a;
    --line: rgba(45, 90, 61, 0.12);
    --line-strong: rgba(45, 90, 61, 0.25);

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;

    --nav-height: 72px;
    --container-max: 1200px;
    --container-padding: clamp(20px, 5vw, 60px);
}

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

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

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

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ── Typography ── */
.h1 { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 300; line-height: 1.15; letter-spacing: -0.01em; }
.h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 300; line-height: 1.2; letter-spacing: -0.01em; }
.h3 { font-family: var(--font-serif); font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 400; line-height: 1.3; }
.body { font-size: 1rem; line-height: 1.8; color: var(--text-secondary); }
.body-lg { font-size: 1.125rem; line-height: 1.8; color: var(--text-secondary); }
.body-sm { font-size: 0.875rem; line-height: 1.7; color: var(--text-muted); }
.label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 1rem;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--primary {
    background: var(--green-800);
    color: var(--white);
    border-color: var(--green-800);
}

.btn--primary:hover {
    background: var(--green-700);
    border-color: var(--green-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(45, 90, 61, 0.25);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.btn--full {
    width: 100%;
}

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

.nav.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.nav__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
    transition: color 0.3s ease;
}

.nav.scrolled .nav__logo {
    color: var(--green-800);
}

.nav__logo-icon {
    width: 22px;
    height: 22px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link:hover {
    color: var(--white);
}

.nav.scrolled .nav__link {
    color: var(--text-secondary);
}

.nav.scrolled .nav__link:hover {
    color: var(--green-800);
}

.nav__link--cta {
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav__link--cta:hover {
    background: var(--white);
    color: var(--green-800) !important;
    border-color: var(--white);
}

.nav.scrolled .nav__link--cta {
    border-color: var(--green-800);
    color: var(--green-800);
}

.nav.scrolled .nav__link--cta:hover {
    background: var(--green-800);
    color: var(--white) !important;
}

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle-line {
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav.scrolled .nav__toggle-line {
    background: var(--green-800);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

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

.hero__bg {
    position: absolute;
    inset: 0;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 58, 37, 0.35) 0%,
        rgba(26, 58, 37, 0.55) 60%,
        rgba(26, 58, 37, 0.75) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 0 var(--container-padding);
    margin-left: calc(var(--container-max) / 2 - 50%);
    animation: fadeUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero__sub {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2.5rem;
    max-width: 540px;
    font-weight: 300;
}

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

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.hero__scroll svg {
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ── Intro ── */
.intro {
    padding: clamp(80px, 12vw, 160px) 0;
}

.intro__line {
    width: 60px;
    height: 1px;
    background: var(--green-700);
    margin-bottom: 2rem;
}

.intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.intro__text .body-lg {
    margin-bottom: 1.25rem;
}

.intro__text .body {
    margin-bottom: 1.25rem;
}

.intro__image {
    overflow: hidden;
    border-radius: 2px;
}

.intro__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.intro__image:hover img {
    transform: scale(1.02);
}

/* ── Section header ── */
.section-header {
    margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header .label {
    margin-bottom: 0.75rem;
}

/* ── Rooms ── */
.rooms {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--white);
}

.rooms__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.room {
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.room:hover {
    transform: translateY(-4px);
}

.room__image {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.room__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room:hover .room__image img {
    transform: scale(1.04);
}

.room__info {
    padding: 28px 4px;
}

.room__info .h3 {
    margin-bottom: 0.75rem;
}

.room__info .body {
    margin-bottom: 1.25rem;
    font-size: 0.925rem;
}

.room__features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.room__features li {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-left: 14px;
    position: relative;
}

.room__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green-700);
}

.rooms__note {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

/* ── Divider ── */
.divider {
    padding: clamp(60px, 10vw, 100px) 0;
    background: var(--green-900);
}

.divider__inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.divider__quote {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    font-style: italic;
}

/* ── Experience ── */
.experience {
    padding: clamp(80px, 12vw, 140px) 0;
}

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

.exp-card {
    background: var(--cream);
    padding: clamp(28px, 3vw, 44px);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.exp-card:hover {
    background: var(--white);
    border-color: var(--line-strong);
    box-shadow: 0 8px 32px rgba(45, 90, 61, 0.06);
}

.exp-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
    color: var(--green-700);
}

.exp-card__icon svg {
    width: 100%;
    height: 100%;
}

.exp-card .h3 {
    margin-bottom: 0.75rem;
}

.exp-card .body {
    font-size: 0.925rem;
    line-height: 1.75;
}

/* ── Gallery ── */
.gallery {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--white);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
    margin-bottom: clamp(48px, 6vw, 80px);
}

.gallery__item {
    overflow: hidden;
    border-radius: 2px;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery__item:hover img {
    transform: scale(1.03);
}

.gallery__item--large {
    grid-column: span 7;
    aspect-ratio: 4/3;
}

.gallery__item--wide {
    grid-column: span 8;
    aspect-ratio: 2/1;
}

.gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
    aspect-ratio: 4/3;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 48px;
    border-top: 1px solid var(--line);
}

.location-info .label {
    margin-bottom: 0.75rem;
}

.location-address {
    font-style: normal;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.link {
    color: var(--green-700);
    border-bottom: 1px solid var(--line);
    transition: border-color 0.3s ease;
}

.link:hover {
    border-color: var(--green-700);
}

/* ── CTA / Contact ── */
.cta {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--cream-dark);
}

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

.cta__inner .label {
    margin-bottom: 0.75rem;
}

.cta__inner .h2 {
    margin-bottom: 1.25rem;
}

.cta__inner .body-lg {
    margin-bottom: 3rem;
}

.booking-form {
    text-align: left;
}

.booking-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group--full {
    margin-bottom: 28px;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 0;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-primary);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line-strong);
    outline: none;
    transition: border-color 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-input:focus {
    border-color: var(--green-700);
}

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

.form-input::placeholder {
    color: var(--text-muted);
}

.booking-form__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 20px;
    color: var(--green-800);
}

.booking-form__success svg {
    color: var(--green-700);
}

/* ── Footer ── */
.footer {
    padding: clamp(60px, 8vw, 100px) 0 clamp(32px, 4vw, 48px);
    background: var(--green-900);
    color: rgba(255,255,255,0.6);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    margin-bottom: clamp(40px, 5vw, 64px);
}

.footer__logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer__brand .body-sm {
    color: rgba(255,255,255,0.45);
    max-width: 280px;
}

.footer__col .label {
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}

.footer__link {
    display: block;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    padding: 6px 0;
    transition: color 0.3s ease;
    border-bottom: none;
}

.footer__link:hover {
    color: var(--white);
}

.footer__bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

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

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

/* ── Responsive ── */
@media (max-width: 1024px) {
    .rooms__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__item--large {
        grid-column: span 8;
    }

    .gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
        grid-column: span 4;
    }

    .gallery__item--wide {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }

    .nav__links.open {
        transform: translateX(0);
    }

    .nav__link {
        font-size: 1rem;
        color: var(--text-secondary) !important;
    }

    .nav__link:hover {
        color: var(--green-800) !important;
    }

    .nav__link--cta {
        border-color: var(--green-800) !important;
        color: var(--green-800) !important;
        margin-top: 8px;
    }

    .hero__content {
        margin-left: 0;
        padding-top: var(--nav-height);
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
        text-align: center;
    }

    .intro__grid {
        grid-template-columns: 1fr;
    }

    .intro__image {
        order: -1;
        aspect-ratio: 4/3;
    }

    .rooms__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .experience__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery__item--large,
    .gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
        grid-column: span 1;
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

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

    .booking-form__row {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }
}
