:root {
    --navy: #1a1f3d;
    --royal: #2d3561;
    --snow: #f5f6fa;
    --gold: #c9a84c;
    --gold-light: #dfc06a;
    --cream: #faf9f7;
    --dark: #13162e;
    --darker: #0d0f1f;
    --text: #2a2d3e;
    --text-light: #6b6f82;
    --radius: 4px;
    --shadow: 0 2px 16px rgba(26,31,61,.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.7; background: #fff; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
a { color: var(--royal); text-decoration: none; transition: color .3s; }
a:hover { color: var(--gold); }
img { display: block; max-width: 100%; height: auto; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ====================== ANIMATIONS — clip / translate ====================== */
.reveal, .reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal { transform: translateY(24px); }
.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal.visible, .reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1; transform: none;
}

/* ====================== NAV ====================== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: background .4s, box-shadow .4s;
}
.header.scrolled {
    background: rgba(13,15,31,.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 12px rgba(0,0,0,.18);
}
.nav {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1120px; margin: 0 auto; padding: 16px 24px;
}
.nav-logo {
    font-family: 'Playfair Display', serif; font-size: 22px;
    color: #fff; letter-spacing: 1px;
}
.nav-logo span { color: var(--gold-light); font-style: italic; margin-left: 4px; }
.nav-links { display: flex; list-style: none; gap: 24px; }
.nav-links a {
    color: rgba(255,255,255,.65); font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.2px;
    position: relative; padding-bottom: 4px;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--gold-light); transition: width .3s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    display: inline-block; padding: 8px 22px; border: 1px solid var(--gold);
    color: var(--gold-light); font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px; transition: all .3s;
}
.nav-cta:hover { background: var(--gold); color: #fff; }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: #fff; transition: .3s; }

/* ====================== HERO — split screen ====================== */
.hero {
    display: flex; min-height: 100vh;
}
.hero-left {
    flex: 1; display: flex; align-items: center; justify-content: center;
    padding: 120px 48px 80px; background: var(--dark);
}
.hero-content { max-width: 480px; }
.hero-badge {
    display: inline-block; font-size: 12px; color: var(--gold-light);
    text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
    border: 1px solid rgba(201,168,76,.3); padding: 6px 16px; margin-bottom: 28px;
}
.hero h1 {
    font-size: clamp(30px, 4vw, 48px); color: #fff; line-height: 1.2; margin-bottom: 20px;
}
.hero-sub {
    font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.8;
    margin-bottom: 36px; font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.btn {
    display: inline-block; padding: 13px 32px;
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.8px; transition: all .3s; border: 2px solid transparent;
}
.btn-primary {
    background: var(--gold); color: #fff; border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light); border-color: var(--gold-light);
    box-shadow: 0 6px 20px rgba(201,168,76,.25); color: #fff;
}
.btn-ghost {
    background: transparent; color: rgba(255,255,255,.7);
    border-color: rgba(255,255,255,.25);
}
.btn-ghost:hover { border-color: #fff; color: #fff; }
.btn-sm { padding: 9px 22px; font-size: 11px; }
.btn-full { width: 100%; text-align: center; }

.hero-highlights {
    display: flex; align-items: center; gap: 20px;
    padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08);
}
.hero-highlights div { text-align: center; }
.hero-highlights strong {
    display: block; font-family: 'Playfair Display', serif;
    font-size: 28px; color: var(--gold-light); font-weight: 400;
}
.hero-highlights span { font-size: 11px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: 1px; }
.hero-highlights .sep {
    width: 1px; height: 32px; background: rgba(255,255,255,.1);
}

.hero-right {
    flex: 1; position: relative; overflow: hidden;
}
.hero-right img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 8s ease;
}
.hero:hover .hero-right img { transform: scale(1.04); }
.hero-right-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--dark) 0%, transparent 30%);
}

/* ====================== SECTIONS ====================== */
.section { padding: 100px 0; }
.section-alt { background: var(--snow); }
.section-dark { background: var(--dark); color: #ccc; }

.label {
    display: block; font-size: 11px; color: var(--gold); text-transform: uppercase;
    letter-spacing: 3px; font-weight: 700; margin-bottom: 12px;
}
.label.center { text-align: center; }
.label.light { color: var(--gold-light); }

.heading-center {
    font-size: 36px; text-align: center; margin-bottom: 16px; color: var(--navy);
}
.heading-center.light { color: #fff; }
.subtitle {
    text-align: center; max-width: 560px; margin: 0 auto 56px;
    color: var(--text-light); font-size: 15px;
}

.text-link {
    display: inline-block; margin-top: 24px; font-size: 14px;
    font-weight: 600; color: var(--gold); letter-spacing: .5px;
    border-bottom: 1px solid transparent; transition: border-color .3s;
}
.text-link:hover { border-color: var(--gold); color: var(--gold); }

/* ====================== ABOUT + FEATURES COMBINED ====================== */
.about-block {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start;
}
.about-img-wrap {
    overflow: hidden; border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.about-img-wrap img {
    width: 100%; height: 400px; object-fit: cover;
    transition: transform .6s;
}
.about-img-wrap:hover img { transform: scale(1.03); }

.about-features-strip {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px;
}
.strip-item {
    display: flex; align-items: center; gap: 12px;
    background: var(--snow); padding: 14px 16px; border-radius: var(--radius);
    transition: box-shadow .3s;
}
.strip-item:hover { box-shadow: 0 2px 12px rgba(26,31,61,.08); }
.strip-icon { font-size: 24px; flex-shrink: 0; }
.strip-item strong { display: block; font-size: 13px; color: var(--navy); font-family: 'Inter', sans-serif; }
.strip-item small { font-size: 11px; color: var(--text-light); }

.about-text .label { text-align: left; }
.about-text h2 { font-size: 34px; margin-bottom: 24px; text-align: left; color: var(--navy); }
.about-text p { font-size: 15px; color: #555; margin-bottom: 14px; line-height: 1.8; }

/* ====================== ROOMS — horizontal rows ====================== */
.room-list { display: flex; flex-direction: column; gap: 32px; }
.room-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    background: #fff; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: box-shadow .3s;
}
.room-row:hover { box-shadow: 0 4px 28px rgba(26,31,61,.1); }
.room-row.reverse .room-photo { order: 2; }
.room-row.reverse .room-details { order: 1; }
.room-photo { position: relative; min-height: 300px; overflow: hidden; }
.room-photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s;
}
.room-row:hover .room-photo img { transform: scale(1.04); }
.room-details {
    padding: 36px 40px; display: flex; flex-direction: column; justify-content: center;
}
.room-type {
    font-size: 11px; color: var(--gold); text-transform: uppercase;
    letter-spacing: 2px; font-weight: 700; margin-bottom: 8px;
}
.room-details h3 { font-size: 26px; color: var(--navy); margin-bottom: 12px; }
.room-details p { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 20px; }
.tags { display: flex; gap: 8px; list-style: none; flex-wrap: wrap; margin-bottom: 24px; }
.tags li {
    font-size: 11px; color: var(--text-light); background: var(--snow);
    padding: 5px 14px; border-radius: var(--radius); text-transform: uppercase; letter-spacing: .8px;
}
.room-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.room-price {
    font-family: 'Playfair Display', serif; font-size: 24px; color: var(--gold);
}
.room-price small { font-size: 13px; color: var(--text-light); }

/* ====================== DINING — horizontal layout ====================== */
.dining-row {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
    background: var(--snow); border-radius: var(--radius); overflow: hidden;
    margin-bottom: 24px; transition: box-shadow .3s;
}
.dining-row:hover { box-shadow: 0 4px 24px rgba(26,31,61,.08); }
.dining-row.flip .dining-img { order: 2; }
.dining-row.flip .dining-text { order: 1; }
.dining-img { min-height: 280px; overflow: hidden; }
.dining-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s;
}
.dining-row:hover .dining-img img { transform: scale(1.04); }
.dining-text { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.dining-badge {
    display: inline-block; align-self: flex-start;
    font-size: 10px; color: var(--gold); text-transform: uppercase;
    letter-spacing: 2px; font-weight: 700;
    border: 1px solid rgba(201,168,76,.3); padding: 4px 12px; margin-bottom: 14px;
}
.dining-text h3 { font-size: 24px; color: var(--navy); margin-bottom: 12px; }
.dining-text p { font-size: 14px; color: #666; line-height: 1.7; margin-bottom: 16px; }
.dining-meta { font-size: 13px; color: var(--gold); font-weight: 600; }

/* ====================== EXPLORE ====================== */
.explore-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.explore-card {
    background: #fff; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s;
}
.explore-card:hover { transform: translateY(-6px); box-shadow: 0 8px 28px rgba(26,31,61,.1); }
.explore-img { height: 180px; overflow: hidden; }
.explore-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s;
}
.explore-card:hover .explore-img img { transform: scale(1.06); }
.explore-body { padding: 20px; }
.explore-body h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.explore-body p { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 10px; }
.explore-dist { font-size: 12px; color: var(--gold); font-weight: 600; }

/* ====================== GALLERY — horizontal scroll ====================== */
.gallery-section { padding-bottom: 80px; }
.gallery-scroll {
    margin-top: 40px; overflow: hidden;
}
.gallery-track {
    display: flex; gap: 16px; overflow-x: auto; padding: 0 24px 16px;
    scroll-snap-type: x mandatory; cursor: grab;
    -ms-overflow-style: none; scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-slide {
    flex: 0 0 340px; height: 240px; border-radius: var(--radius);
    overflow: hidden; scroll-snap-align: start;
}
.gallery-slide.tall { flex: 0 0 280px; height: 240px; }
.gallery-slide img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s;
}
.gallery-slide:hover img { transform: scale(1.06); }

/* ====================== REVIEWS ====================== */
.reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.review-card {
    background: #fff; padding: 32px; border-radius: var(--radius);
    box-shadow: var(--shadow); transition: transform .3s;
    border-top: 3px solid var(--gold);
}
.review-card:hover { transform: translateY(-4px); }
.review-stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.review-text {
    font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 20px;
    font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
    width: 42px; height: 42px; border-radius: 50%; background: var(--navy);
    color: var(--gold-light); display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.review-author strong { display: block; font-size: 14px; color: var(--navy); font-family: 'Inter', sans-serif; }
.review-author span { font-size: 12px; color: var(--text-light); }

/* ====================== CONTACT — form + info ====================== */
.contact-layout {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px;
    margin-top: 48px;
}
.contact-info-side { display: flex; flex-direction: column; gap: 28px; }
.ci-block h3 { font-size: 18px; color: var(--gold-light); margin-bottom: 10px; font-family: 'Inter', sans-serif; font-weight: 600; }
.ci-block p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 4px; }
.ci-block a { color: var(--gold-light); }
.ci-block a:hover { color: #fff; }
.ci-note { font-size: 12px; color: rgba(255,255,255,.3); font-style: italic; margin-top: 6px; }

.contact-form {
    display: flex; flex-direction: column; gap: 14px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%; padding: 14px 16px; background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12); color: #fff;
    font-family: 'Inter', sans-serif; font-size: 14px;
    border-radius: var(--radius); transition: border-color .3s;
    outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,.3);
}
.contact-form select { color: rgba(255,255,255,.3); }
.contact-form select option { background: var(--dark); color: #fff; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}
.contact-form textarea { resize: vertical; min-height: 80px; }

.map-wrapper { margin-top: 48px; }

/* ====================== FOOTER — 2 columns ====================== */
.footer { background: var(--darker); color: #667; padding: 56px 0 0; }
.footer-logo { font-size: 24px; }
.footer-inner {
    display: flex; justify-content: space-between; align-items: flex-start; gap: 40px;
}
.footer-desc { margin-top: 14px; font-size: 14px; color: #556; line-height: 1.8; }
.footer-contacts { margin-top: 12px; display: flex; gap: 20px; }
.footer-contacts a { color: #556; font-size: 14px; }
.footer-contacts a:hover { color: var(--gold-light); }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.footer-links a { color: #556; font-size: 14px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
    margin-top: 40px; padding: 18px 0; border-top: 1px solid #1a1f35;
    text-align: center; font-size: 12px;
}

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

@media (max-width: 768px) {
    /* Nav */
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: var(--dark); flex-direction: column; padding: 80px 32px; gap: 24px;
        transition: right .35s; list-style: none;
    }
    .nav-links.open { right: 0; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Hero */
    .hero { flex-direction: column; }
    .hero-left { padding: 100px 24px 48px; min-height: auto; }
    .hero-right { height: 50vh; }
    .hero-right-overlay {
        background: linear-gradient(180deg, var(--dark) 0%, transparent 40%);
    }
    .hero-highlights { gap: 14px; }
    .hero-highlights strong { font-size: 22px; }

    /* About */
    .about-block { grid-template-columns: 1fr; gap: 36px; }
    .about-features-strip { grid-template-columns: 1fr 1fr; }

    /* Rooms */
    .room-row, .room-row.reverse { grid-template-columns: 1fr; }
    .room-row.reverse .room-photo { order: 0; }
    .room-row.reverse .room-details { order: 0; }
    .room-photo { min-height: 220px; }
    .room-details { padding: 24px; }

    /* Dining */
    .dining-row, .dining-row.flip { grid-template-columns: 1fr; }
    .dining-row.flip .dining-img { order: 0; }
    .dining-row.flip .dining-text { order: 0; }
    .dining-img { min-height: 200px; }
    .dining-text { padding: 24px; }

    /* Explore */
    .explore-grid { grid-template-columns: 1fr; }

    /* Gallery */
    .gallery-slide { flex: 0 0 280px; height: 200px; }

    /* Reviews */
    .reviews-grid { grid-template-columns: 1fr; }

    /* Contact */
    .contact-layout { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer-inner { flex-direction: column; }

    /* Sections */
    .section { padding: 64px 0; }
    .heading-center { font-size: 28px; }
}

@media (max-width: 480px) {
    .about-features-strip { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { text-align: center; }
}
