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

:root {
    --navy-900: #0a1628;
    --navy-800: #0f1f36;
    --navy-700: #162a45;
    --navy-600: #1d3557;
    --gold-500: #c9a84c;
    --gold-400: #d4b965;
    --gold-300: #e0ca85;
    --gold-600: #a8893a;
    --cream: #f5f0e8;
    --cream-light: #faf7f2;
    --white: #ffffff;
    --text-muted: #8899aa;
    --text-light: #b8c5d4;
    --border-subtle: rgba(201, 168, 76, 0.15);
    --border-gold: rgba(201, 168, 76, 0.4);
    --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.15);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.4);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.2s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--navy-900);
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

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

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

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

.text-center { text-align: center; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold-500);
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--cream);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.text-gold {
    color: var(--gold-500);
    font-style: italic;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
}

/* LOADER */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-500);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 24px;
}

.loader-bar {
    width: 120px;
    height: 2px;
    background: var(--navy-700);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
    border-radius: 2px;
    animation: loadFill 1.4s ease forwards;
}

@keyframes loadFill {
    to { width: 100%; }
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-500);
    letter-spacing: 0.02em;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
}

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

.nav-link {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-link:hover {
    color: var(--gold-500);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    color: var(--gold-500);
    transition: all var(--transition-fast);
}

.nav-cta::after { display: none; }

.nav-cta:hover {
    background: var(--gold-500);
    color: var(--navy-900);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: var(--transition-fast);
    display: block;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    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;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero.loaded .hero-bg img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.55) 0%,
        rgba(10, 22, 40, 0.40) 40%,
        rgba(10, 22, 40, 0.70) 75%,
        rgba(10, 22, 40, 0.95) 100%
    );
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-500);
    border-radius: 50%;
    opacity: 0;
    animation: float 8s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 1s; }
.particle:nth-child(3) { left: 40%; top: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 55%; top: 70%; animation-delay: 0.5s; }
.particle:nth-child(5) { left: 70%; top: 25%; animation-delay: 3s; }
.particle:nth-child(6) { left: 85%; top: 55%; animation-delay: 1.5s; }
.particle:nth-child(7) { left: 15%; top: 80%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 45%; top: 15%; animation-delay: 4s; }
.particle:nth-child(9) { left: 65%; top: 85%; animation-delay: 0.8s; }
.particle:nth-child(10) { left: 90%; top: 40%; animation-delay: 3.5s; }
.particle:nth-child(11) { left: 35%; top: 45%; animation-delay: 2.2s; }
.particle:nth-child(12) { left: 78%; top: 10%; animation-delay: 1.8s; }

@keyframes float {
    0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
    10% { opacity: 0.6; }
    50% { opacity: 0.3; transform: translateY(-40px) scale(1.5); }
    90% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    background: rgba(201, 168, 76, 0.06);
}

.hero-title {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 600;
    color: var(--cream);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.title-accent {
    color: var(--gold-500);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--border-gold);
}

.btn-outline:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold-500);
    color: var(--gold-400);
}

.btn-sm {
    padding: 12px 28px;
    font-size: 0.72rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold-500);
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-gold);
}

.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: var(--text-muted);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold-500), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 48px; }
    50% { opacity: 0.4; height: 32px; }
}

/* ABOUT */
.about {
    padding: 120px 0;
    background: var(--navy-900);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

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

.about-image-wrap {
    position: relative;
}

.about-image-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image-main:hover img {
    transform: scale(1.03);
}

.about-image-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 240px;
    border-radius: 8px;
    overflow: hidden;
    border: 4px solid var(--navy-900);
    box-shadow: var(--shadow-lg);
}

.about-image-accent img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--navy-800);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-year {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-500);
}

.badge-location {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about-content {
    padding-top: 20px;
}

.about-text {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-500);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--cream);
}

/* ACCOMMODATIONS */
.accommodations {
    padding: 120px 0;
    background: var(--navy-800);
    position: relative;
}

.accommodations::before,
.accommodations::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.accommodations::before { top: 0; }
.accommodations::after { bottom: 0; }

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

.room-card {
    background: var(--navy-900);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition);
}

.room-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.room-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.08);
}

.room-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold-500);
    color: var(--navy-900);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
}

.room-info {
    padding: 28px;
}

.room-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--cream);
}

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

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.room-amenities span {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 6px 12px;
    background: var(--navy-800);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

/* EXPERIENCE */
.experience {
    padding: 120px 0;
    background: var(--navy-900);
    position: relative;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.exp-card {
    background: var(--navy-800);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.exp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
    opacity: 0;
    transition: opacity var(--transition);
}

.exp-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.exp-card:hover::before {
    opacity: 1;
}

.exp-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-500);
    margin-bottom: 24px;
    transition: all var(--transition);
}

.exp-card:hover .exp-icon {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--border-gold);
}

.exp-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--cream);
}

.exp-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
}

/* LOCATION */
.location {
    padding: 120px 0;
    background: var(--navy-800);
    position: relative;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

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

.location-text {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 36px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.loc-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.loc-detail svg {
    color: var(--gold-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.loc-detail strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 2px;
}

.loc-detail span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
}

.location-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.location-overlay-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    padding: 20px 24px;
}

.overlay-label {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-500);
}

.overlay-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* CONTACT */
.contact {
    padding: 120px 0;
    background: var(--navy-900);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

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

.contact-text {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 36px;
}

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

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--navy-800);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.contact-method:hover {
    border-color: var(--border-gold);
    background: var(--navy-700);
}

.cm-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-500);
    flex-shrink: 0;
}

.cm-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.cm-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--cream);
    line-height: 1.5;
}

.contact-form-wrap {
    background: var(--navy-800);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 40px;
}

.contact-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-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--navy-900);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--cream);
    transition: border-color var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
}

.form-group 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='%23c9a84c' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--navy-900);
    color: var(--cream);
}

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

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    border: 2px solid var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--gold-500);
}

.form-success h3 {
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* FOOTER */
.footer {
    padding: 80px 0 0;
    background: var(--navy-900);
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
    margin-top: 16px;
    max-width: 300px;
}

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

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

.footer-links h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 400;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-400);
}

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

.footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 8px;
}

.footer-contact a {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 400;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--gold-400);
}

.footer-contact span {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy-800);
    border: 1px solid var(--border-gold);
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-500);
    color: var(--navy-900);
}

/* ANIMATIONS */
[data-aos] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 900px) {
    .about-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-accent {
        right: 0;
        bottom: -30px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(10, 22, 40, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: right var(--transition);
        border-left: 1px solid var(--border-subtle);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .contact-form-wrap {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .about-image-accent {
        width: 180px;
    }

    .about-image-accent img {
        height: 130px;
    }
}
