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

:root {
    --plum: #7B3F5B;
    --plum-deep: #5A2D43;
    --plum-light: #9B5A76;
    --plum-pale: #F5E6EC;
    --amber: #D4A017;
    --amber-light: #E8C05A;
    --amber-pale: #FDF8E8;
    --sand: #F7F4F0;
    --sand-dark: #EDE8E0;
    --charcoal: #1A1A1A;
    --text: #2C2C2C;
    --text-light: #6B6B6B;
    --text-muted: #999;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --transition: 0.3s 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);
    background: var(--sand);
    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 24px;
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(123, 63, 91, 0.08);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav__logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.nav.scrolled .nav__logo {
    color: var(--plum-deep);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav__link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber);
    transition: var(--transition);
}

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

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

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

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

.nav__link--cta {
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    transition: var(--transition);
}

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

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

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

.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: var(--transition);
}

.nav.scrolled .nav__toggle-line {
    background: var(--plum-deep);
}

.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;
    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(90, 45, 67, 0.82) 0%,
        rgba(123, 63, 91, 0.65) 50%,
        rgba(26, 26, 26, 0.55) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: center;
    padding-top: 80px;
    width: 100%;
}

.hero__card {
    max-width: 600px;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 24px;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero__subheadline {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 480px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn--primary {
    background: var(--amber);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.3);
}

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

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

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

/* ── STAT CARDS ── */
.hero__stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px 28px;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-4px);
}

.stat-card__number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--amber-light);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card__label {
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
}

/* ── SCROLL INDICATOR ── */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.hero__scroll span {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ── SECTIONS ── */
.section {
    padding: 120px 0;
}

.section__header {
    max-width: 640px;
}

.section__header--center {
    text-align: center;
    margin: 0 auto 64px;
}

.section__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section__lead {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
}

/* ── ROOMS GRID ── */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.room-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(123, 63, 91, 0.06);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(123, 63, 91, 0.1);
}

.room-card__image {
    overflow: hidden;
    aspect-ratio: 3/2;
}

.room-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-card__image img {
    transform: scale(1.05);
}

.room-card__body {
    padding: 32px;
}

.room-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.room-card__type {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--plum);
}

.room-card__capacity {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 4px 12px;
    background: var(--plum-pale);
    border-radius: 100px;
}

.room-card__name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.room-card__description {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.room-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.room-card__features li {
    font-size: 0.8125rem;
    color: var(--text-light);
    padding: 6px 14px;
    background: var(--sand);
    border-radius: 100px;
}

/* ── SPLIT SECTION ── */
.section--inverse {
    background: var(--plum-deep);
}

.section--inverse .section__eyebrow {
    color: var(--amber-light);
}

.section--inverse .section__title {
    color: var(--white);
}

.section--inverse .section__lead {
    color: rgba(255, 255, 255, 0.7);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split__image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 6/7;
}

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

.location-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.location-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    font-weight: 300;
}

.location-feature svg {
    color: var(--amber);
    flex-shrink: 0;
}

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

.amenity-card {
    padding: 40px 32px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(123, 63, 91, 0.06);
    transition: var(--transition);
}

.amenity-card:hover {
    border-color: var(--plum-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(123, 63, 91, 0.08);
}

.amenity-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--plum-pale);
    color: var(--plum);
    margin-bottom: 24px;
}

.amenity-card__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.amenity-card__text {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
}

/* ── GALLERY ── */
.section--gallery {
    padding: 80px 0 120px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 16px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item--large {
    grid-column: span 7;
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 5;
}

.gallery-item:nth-child(3) {
    grid-column: span 5;
}

.gallery-item:nth-child(4) {
    grid-column: span 6;
}

.gallery-item:nth-child(5) {
    grid-column: span 6;
}

/* ── CTA / CONTACT ── */
.section--cta {
    background: var(--sand-dark);
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    background: var(--white);
    border-radius: 24px;
    padding: 64px;
    margin-bottom: 48px;
    border: 1px solid rgba(123, 63, 91, 0.06);
}

.cta__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.form-input {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    padding: 14px 18px;
    border: 1px solid var(--sand-dark);
    border-radius: 10px;
    background: var(--sand);
    color: var(--text);
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-input:focus {
    border-color: var(--plum);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(123, 63, 91, 0.08);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

.form-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--plum-pale);
    border-radius: 10px;
    color: var(--plum-deep);
    font-size: 0.9375rem;
    font-weight: 400;
}

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

.contact-details {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

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

.contact-item svg {
    color: var(--plum);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item__label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-item__value {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text);
}

.contact-item__value a {
    color: var(--plum);
    transition: var(--transition);
}

.contact-item__value a:hover {
    color: var(--plum-deep);
    text-decoration: underline;
}

/* ── FOOTER ── */
.footer {
    background: var(--charcoal);
    padding: 64px 0 40px;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.footer__logo {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer__tagline {
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

.footer__links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__links a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--amber-light);
}

.footer__legal {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.8;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.footer__legal a:hover {
    color: var(--amber-light);
}

/* ── ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 160px;
    }

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

    .split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .split__image {
        aspect-ratio: 16/9;
    }

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

    .cta-card {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }

    .nav__menu.open {
        right: 0;
    }

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

    .nav__link--cta {
        border-color: var(--plum) !important;
        color: var(--plum) !important;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero__content {
        padding-top: 0;
    }

    .hero__stats {
        flex-direction: column;
    }

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

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item--large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item:nth-child(n) {
        grid-column: span 1;
    }

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

    .cta-card {
        padding: 28px;
    }

    .contact-details {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .section {
        padding: 80px 0;
    }

    .hero__scroll {
        display: none;
    }
}

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

    .hero__actions {
        flex-direction: column;
    }

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

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

    .gallery-item--large {
        grid-column: span 1;
    }
}
