/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy: #0f172a;
    --navy-light: #1e293b;
    --navy-mid: #334155;
    --gold: #d97706;
    --gold-light: #f59e0b;
    --gold-pale: #fef3c7;
    --cream: #fafaf5;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 48px rgba(15, 23, 42, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--gray-800);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; color: var(--navy); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600; font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(217, 119, 6, 0.35); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15, 23, 42, 0.3); }
.btn--outline { border: 2px solid var(--white); color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--navy); }
.btn--outline-light { border: 2px solid rgba(255,255,255,0.5); color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--navy); }
.btn--full { width: 100%; justify-content: center; }

/* ── Section shared ── */
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-tag {
    display: inline-block;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 12px;
}
.section-title { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 16px; }
.section-desc { color: var(--gray-600); font-size: 1.05rem; }

/* ── Nav ── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}
.nav__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; gap: 32px; height: 72px;
}
.nav__logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem;
    color: var(--white);
}
.nav__logo-icon { flex-shrink: 0; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a {
    color: rgba(255,255,255,0.75); font-size: 0.9rem; font-weight: 500;
    transition: var(--transition); position: relative;
}
.nav__links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--gold); transition: var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
    background: var(--gold); color: var(--white); padding: 10px 22px;
    border-radius: 50px; font-weight: 600; font-size: 0.9rem;
    transition: var(--transition);
}
.nav__cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Mobile Nav ── */
.mobile-nav {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0; z-index: 99;
    background: var(--navy);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
    opacity: 0; pointer-events: none; transition: var(--transition);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav__link { color: rgba(255,255,255,0.8); font-size: 1.25rem; font-weight: 500; transition: var(--transition); }
.mobile-nav__link:hover { color: var(--gold); }
.mobile-nav__cta { background: var(--gold); color: var(--white); padding: 14px 32px; border-radius: 50px; font-weight: 600; }

/* ── Hero ── */
.hero {
    position: relative; height: 100vh; min-height: 640px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(15,23,42,0.7) 50%, rgba(15,23,42,0.5) 100%);
}
.hero__geo { position: absolute; z-index: 1; pointer-events: none; }
.hero__geo--tl {
    top: -80px; left: -80px; width: 320px; height: 320px;
    background: var(--gold); opacity: 0.12;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}
.hero__geo--br {
    bottom: -60px; right: -60px; width: 280px; height: 280px;
    background: var(--gold); opacity: 0.08;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.hero__geo--dot {
    top: 20%; right: 8%; width: 12px; height: 12px;
    background: var(--gold-light); border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.15), 0 0 0 16px rgba(245, 158, 11, 0.06);
}
.hero__content {
    position: relative; z-index: 2; text-align: center;
    max-width: 780px; padding: 0 24px;
}
.hero__tag {
    display: inline-block;
    background: rgba(217, 119, 6, 0.2); color: var(--gold-light);
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 8px 20px; border-radius: 50px; margin-bottom: 24px;
    border: 1px solid rgba(217, 119, 6, 0.3);
}
.hero__title {
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    color: var(--white); font-weight: 800;
    margin-bottom: 20px; line-height: 1.15;
}
.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.8); margin-bottom: 36px;
    max-width: 580px; margin-left: auto; margin-right: auto;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
    position: absolute; bottom: 32px; 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.75rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.hero__scroll svg { animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ── Info Bar ── */
.info-bar {
    background: var(--navy); padding: 20px 0;
    border-bottom: 3px solid var(--gold);
}
.info-bar__inner {
    display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.info-item { display: flex; align-items: center; gap: 12px; }
.info-item__icon { color: var(--gold); flex-shrink: 0; }
.info-item strong { display: block; color: var(--white); font-size: 0.95rem; }
.info-item span { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* ── Rooms ── */
.rooms { background: var(--cream); }
.rooms__grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.room-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow);
    transition: var(--transition);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-card__img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/2; }
.room-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover .room-card__img-wrap img { transform: scale(1.05); }
.room-card__badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--gold); color: var(--white);
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
    padding: 6px 14px; border-radius: 50px;
}
.room-card__body { padding: 28px; }
.room-card__title { font-size: 1.35rem; margin-bottom: 10px; }
.room-card__desc { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 16px; }
.room-card__features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.room-card__features li {
    background: var(--gray-100); color: var(--gray-600);
    font-size: 0.82rem; font-weight: 500; padding: 6px 12px; border-radius: 50px;
}

/* ── Amenities ── */
.amenities { background: var(--white); }
.amenities__grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.amenity-card {
    background: var(--cream); border-radius: var(--radius-lg);
    padding: 36px 28px; transition: var(--transition);
    border: 1px solid transparent;
}
.amenity-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow); }
.amenity-card__icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--navy); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.amenity-card__title { font-size: 1.15rem; margin-bottom: 8px; }
.amenity-card__desc { color: var(--gray-600); font-size: 0.95rem; }

/* ── About ── */
.about { background: var(--navy); position: relative; }
.about__geo1 {
    position: absolute; top: -100px; right: -100px; width: 400px; height: 400px;
    background: var(--gold); opacity: 0.06; border-radius: 50%;
}
.about__geo2 {
    position: absolute; bottom: -80px; left: -80px; width: 240px; height: 240px;
    background: var(--gold-light); opacity: 0.05;
    clip-path: polygon(0 100%, 100% 100%, 0 0);
}
.about__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    position: relative; z-index: 1;
}
.about__img-stack { position: relative; }
.about__img-stack img:first-child { border-radius: var(--radius-lg); width: 100%; height: 480px; object-fit: cover; }
.about__img-float {
    position: absolute; bottom: -30px; right: -30px;
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 4px solid var(--navy);
}
.about__img-float img { width: 260px; height: 200px; object-fit: cover; }
.about__content { color: var(--white); }
.about__content .section-tag { color: var(--gold-light); }
.about__content .section-title { color: var(--white); }
.about__text { color: rgba(255,255,255,0.75); margin-bottom: 16px; font-size: 1.02rem; }
.about__stats {
    display: flex; gap: 40px; margin-top: 36px;
    padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1);
}
.stat__number { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat__label { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ── Location ── */
.location { background: var(--cream); }
.location__stripe {
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: repeating-linear-gradient(90deg, var(--navy) 0px, var(--navy) 20px, var(--gold) 20px, var(--gold) 40px);
}
.location__grid {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start;
}
.location__details { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.loc-detail { display: flex; gap: 16px; margin-bottom: 24px; }
.loc-detail__icon { flex-shrink: 0; margin-top: 2px; }
.loc-detail strong { display: block; font-size: 0.85rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.loc-detail p { font-size: 1rem; color: var(--gray-800); }
.loc-detail a { color: var(--gold); font-weight: 600; transition: var(--transition); }
.loc-detail a:hover { color: var(--navy); }
.loc-nearby { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--gray-200); }
.loc-nearby strong { display: block; font-size: 0.85rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.loc-nearby ul li { padding: 6px 0; color: var(--gray-600); font-size: 0.95rem; position: relative; padding-left: 16px; }
.loc-nearby ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* ── CTA ── */
.cta {
    background: var(--navy); position: relative; padding: 100px 0; overflow: hidden;
}
.cta__geo1 {
    position: absolute; top: -120px; left: -120px; width: 400px; height: 400px;
    background: var(--gold); opacity: 0.07; border-radius: 50%;
}
.cta__geo2 {
    position: absolute; bottom: -80px; right: -80px; width: 260px; height: 260px;
    background: var(--gold-light); opacity: 0.06;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.cta__content { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
.cta__title { font-size: clamp(2rem, 4vw, 2.75rem); color: var(--white); margin-bottom: 16px; }
.cta__text { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 36px; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ── */
.contact { background: var(--white); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact__info .section-title { text-align: left; }
.contact__text { color: var(--gray-600); font-size: 1.02rem; margin-bottom: 32px; }
.contact__methods { display: flex; flex-direction: column; gap: 16px; }
.contact__method {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 20px; background: var(--cream); border-radius: var(--radius);
    transition: var(--transition);
}
.contact__method:hover { background: var(--gold-pale); }
.contact__method-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--navy); color: var(--gold);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact__method span { font-size: 0.95rem; color: var(--gray-800); }
.contact__form-wrap { background: var(--cream); border-radius: var(--radius-lg); padding: 40px; }
.contact__form-title { font-size: 1.5rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray-600); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200);
    border-radius: var(--radius); font-family: inherit; font-size: 0.95rem;
    color: var(--gray-800); background: var(--white);
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(217,119,6,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: none; margin-top: 16px; padding: 14px 20px;
    background: #ecfdf5; color: #065f46; border-radius: var(--radius);
    font-size: 0.95rem; font-weight: 500;
}
.form-success.show { display: block; }

/* ── Footer ── */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer__top { padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
.footer__logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--white); margin-bottom: 14px; }
.footer__brand p { font-size: 0.95rem; line-height: 1.7; }
.footer__links strong, .footer__contact strong {
    display: block; color: var(--white); font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
}
.footer__links a { display: block; padding: 5px 0; font-size: 0.95rem; transition: var(--transition); }
.footer__links a:hover { color: var(--gold); }
.footer__contact a { display: block; padding: 5px 0; font-size: 0.95rem; transition: var(--transition); }
.footer__contact a:hover { color: var(--gold); }
.footer__contact span { display: block; padding: 5px 0; font-size: 0.95rem; }
.footer__bottom { padding: 24px 0; }
.footer__bottom p { text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ── Geo Accent ── */
.geo-accent { position: absolute; pointer-events: none; }
.geo-accent--gold { top: 0; right: 0; width: 200px; height: 200px; background: var(--gold); opacity: 0.06; clip-path: polygon(100% 0, 100% 70%, 70% 100%, 100% 100%); }
.geo-accent--navy { bottom: 0; left: 0; width: 160px; height: 160px; background: var(--navy); opacity: 0.04; clip-path: polygon(0 100%, 0 30%, 30% 100%); }

/* ── Reveal ── */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
    .hero__scroll svg { animation: none; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .nav__links, .nav__cta { display: none; }
    .nav__burger { display: flex; }
    .about__grid, .location__grid, .contact__grid { grid-template-columns: 1fr; }
    .about__img-float { right: 10px; bottom: -20px; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .section { padding: 72px 0; }
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }
    .info-bar__inner { flex-direction: column; gap: 16px; align-items: center; }
    .form-row { grid-template-columns: 1fr; }
    .about__stats { flex-direction: column; gap: 20px; }
    .about__img-stack img:first-child { height: 320px; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .cta__actions { flex-direction: column; align-items: center; }
    .cta__actions .btn { width: 100%; max-width: 280px; justify-content: center; }
}
