/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:    #0f1f3d;
    --navy-lt: #1a2d52;
    --gold:    #c9a84c;
    --gold-lt: #dfc06e;
    --gold-dk: #a8872e;
    --cream:   #faf8f4;
    --cream-dk:#f0ece4;
    --white:   #ffffff;
    --text:    #1a1a1a;
    --text-lt: #555555;
    --text-muted: #888888;
    --border:  #e0dbd2;
    --radius:  8px;
    --radius-lg: 12px;
    --shadow-sm:  0 1px 3px rgba(15,31,61,0.06), 0 1px 2px rgba(15,31,61,0.04);
    --shadow-md:  0 4px 16px rgba(15,31,61,0.08), 0 2px 4px rgba(15,31,61,0.04);
    --shadow-lg:  0 12px 40px rgba(15,31,61,0.12), 0 4px 12px rgba(15,31,61,0.06);
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 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);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dk);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-lt);
    max-width: 560px;
    line-height: 1.7;
}

.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--gold {
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
}
.btn--gold:hover {
    background: var(--gold-lt);
    border-color: var(--gold-lt);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn--outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}
.btn--outline:hover {
    background: var(--navy);
    color: var(--white);
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250,248,244,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(250,248,244,0.97);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

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

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__logo-mark {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    background: var(--navy);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    letter-spacing: -0.02em;
}

.header__logo-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
}

.header__logo-sub {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* NAV */
.nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-lt);
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
}
.nav__link:hover { color: var(--navy); background: rgba(15,31,61,0.04); }

.nav__link--cta {
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    margin-left: 8px;
}
.nav__link--cta:hover { background: var(--gold-lt); }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.nav__toggle-bar {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--cream);
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: calc(100vh - 72px);
    min-height: calc(100dvh - 72px);
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 48px 60px 0;
    max-width: 580px;
}

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

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__body {
    font-size: 1.1rem;
    color: var(--text-lt);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

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

.hero__trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-lt);
}
.hero__trust-item svg { color: var(--gold); flex-shrink: 0; }

/* HERO IMAGE */
.hero__image-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
}

.hero__image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.hero__image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(15,31,61,0.25), transparent);
    pointer-events: none;
}

/* ===== INTRO ===== */
.intro {
    background: var(--navy);
    padding: 56px 0;
}

.intro__inner {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.intro__divider {
    flex-shrink: 0;
    width: 3px;
    height: 64px;
    background: var(--gold);
    border-radius: 2px;
    margin-top: 6px;
}

.intro__text {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    max-width: 780px;
}
.intro__text strong { color: var(--gold-lt); font-weight: 600; }

/* ===== ROOMS ===== */
.rooms {
    padding: 100px 0;
    background: var(--cream);
}

.rooms__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.room-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.room-card__img {
    overflow: hidden;
    aspect-ratio: 560/380;
}
.room-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.room-card:hover .room-card__img img { transform: scale(1.04); }

.room-card__body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.room-card__title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
}

.room-card__desc {
    font-size: 0.9rem;
    color: var(--text-lt);
    line-height: 1.65;
}

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

.room-card__features li {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    background: var(--cream);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.room-card__body .btn { margin-top: 4px; align-self: flex-start; }

/* ===== AMENITIES ===== */
.amenities {
    padding: 100px 0;
    background: var(--white);
}

.amenities__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.amenity-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--cream);
    transition: var(--transition);
}
.amenity-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.amenity-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--navy);
    color: var(--gold);
    margin-bottom: 20px;
}

.amenity-card__title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.amenity-card__desc {
    font-size: 0.9rem;
    color: var(--text-lt);
    line-height: 1.7;
}

/* ===== LOCATION ===== */
.location {
    padding: 100px 0;
    background: var(--cream);
}

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

.location__body {
    font-size: 1.05rem;
    color: var(--text-lt);
    line-height: 1.75;
    margin-bottom: 32px;
}

.location__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--text);
}

.location__list-icon {
    flex-shrink: 0;
    color: var(--gold);
}

.location__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.location__map-link { display: block; position: relative; }
.location__map-img { width: 100%; aspect-ratio: 620/480; object-fit: cover; }

.location__map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(15,31,61,0.85), transparent);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.location__map-link:hover .location__map-overlay { background: linear-gradient(to top, rgba(15,31,61,0.95), transparent); }

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--navy);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact .section-title { color: var(--white); }
.contact .section-eyebrow { color: var(--gold); }
.contact__body {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__detail { display: flex; flex-direction: column; gap: 6px; }

.contact__detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.contact__detail a,
.contact__detail dd {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    transition: var(--transition);
}
.contact__detail a:hover { color: var(--gold-lt); }

/* FORM */
.contact__form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact__form-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 28px;
}

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

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-lt);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}
.form-input:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-input::placeholder { color: var(--text-muted); }

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

.contact__form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
    text-align: center;
}

/* SUCCESS */
.contact__success {
    text-align: center;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.contact__success .success-icon { color: var(--gold-dk); }
.contact__success .success-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--navy);
}
.contact__success p { color: var(--text-lt); font-size: 0.95rem; }

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 56px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}

.footer__brand { display: flex; flex-direction: column; gap: 12px; }

.footer__logo-mark {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(201,168,76,0.15);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.footer__logo-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    transition: var(--transition);
}
.footer__contact-link:hover { color: var(--gold-lt); }
.footer__contact-link svg { flex-shrink: 0; color: var(--gold); }

.footer__address {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

.footer__legal { font-size: 0.75rem; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__content { padding: 48px 0 48px 24px; max-width: none; }
    .hero__image-wrap { min-height: 50vh; }
    .rooms__grid { grid-template-columns: repeat(2, 1fr); }
    .location__grid { grid-template-columns: 1fr; gap: 40px; }
    .contact__grid { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

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

    .nav__list {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250,248,244,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    .nav__list.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav__link { width: 100%; padding: 12px 16px; }
    .nav__link--cta { margin-left: 0; text-align: center; margin-top: 8px; }

    .hero { min-height: auto; }
    .hero__grid { min-height: auto; }
    .hero__content { padding: 100px 24px 40px; }
    .hero__image-wrap { min-height: 40vh; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
    .hero__trust { gap: 16px; }

    .intro__inner { flex-direction: column; gap: 20px; }
    .intro__divider { width: 48px; height: 3px; margin-top: 0; }

    .rooms { padding: 64px 0; }
    .rooms__grid { grid-template-columns: 1fr; }

    .amenities { padding: 64px 0; }
    .amenities__grid { grid-template-columns: 1fr; }

    .location { padding: 64px 0; }
    .contact { padding: 64px 0; }
    .contact__form-wrap { padding: 28px; }

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

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__content { padding: 96px 16px 32px; }
    .hero__headline { font-size: 2rem; }
    .section-title { font-size: 1.6rem; }
}
