/* ============================================================
   VILLA GRANDE LODGE — GLOBAL STYLESHEET
   Theme: Navy #0A2342 | Gold #C9A84C | Cream #F5F0E8
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

:root {
    --navy:        #0A2342;
    --navy-mid:    #102F5A;
    --navy-deep:   #060f1e;
    --gold:        #C9A84C;
    --gold-light:  #E6D792;
    --gold-dark:   #A8873A;
    --cream:       #F5F0E8;
    --white:       #FFFFFF;
    --dark-text:   #1a1a2e;
    --body-text:   #4a4a5a;
    --border:      rgba(201,168,76,0.25);
    --shadow-sm:   0 4px 20px rgba(10,35,66,0.08);
    --shadow-md:   0 12px 40px rgba(10,35,66,0.12);
    --shadow-lg:   0 30px 80px rgba(10,35,66,0.18);
    --transition:  all 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    color: var(--body-text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--dark-text);
    line-height: 1.2;
}

a { color: inherit; transition: var(--transition); }
a:hover { color: var(--gold); }

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

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.bg-navy   { background-color: var(--navy) !important; }
.bg-cream  { background-color: var(--cream) !important; }

.fw-medium    { font-weight: 500 !important; }
.fw-semi-bold { font-weight: 600 !important; }

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#vg-loader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#vg-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-logo-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: loaderReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes loaderReveal {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.vg-monogram {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.vg-monogram svg .vg-path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawLogo 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes drawLogo {
    to { stroke-dashoffset: 0; }
}

.loader-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.12em;
    opacity: 0;
    animation: fadeUpText 0.7s ease 1.5s forwards;
}

.loader-tagline {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 6px;
    opacity: 0;
    animation: fadeUpText 0.7s ease 1.9s forwards;
}

@keyframes fadeUpText {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.loader-bar-track {
    width: 180px;
    height: 1px;
    background: rgba(201,168,76,0.2);
    margin-top: 36px;
    border-radius: 1px;
    overflow: hidden;
    opacity: 0;
    animation: fadeUpText 0.4s ease 2.1s forwards;
}

.loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    animation: loadBar 1.2s cubic-bezier(0.4, 0, 0.2, 1) 2.1s forwards;
}

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

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--navy);
    padding: 8px 0;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

.top-bar a, .top-bar p { color: rgba(255,255,255,0.7); font-size: 0.78rem; letter-spacing: 0.04em; }
.top-bar a:hover { color: var(--gold); }
.top-bar .social-links a {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    transition: var(--transition);
    text-decoration: none;
}
.top-bar .social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-vg {
    background: var(--navy);
    padding: 0;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    transition: var(--transition);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-vg.scrolled {
    background: rgba(10,35,66,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 40px rgba(0,0,0,0.3);
}

.navbar-vg .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    text-decoration: none;
}

.navbar-vg .brand-icon {
    width: 44px;
    height: 44px;
}

.navbar-vg .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.navbar-vg .brand-text span:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.navbar-vg .brand-text span:last-child {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.navbar-vg .nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 28px 16px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-vg .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: var(--gold);
    transition: all 0.35s ease;
}

.navbar-vg .nav-link:hover,
.navbar-vg .nav-link.active {
    color: var(--gold) !important;
}

.navbar-vg .nav-link:hover::after,
.navbar-vg .nav-link.active::after {
    left: 16px; right: 16px;
}

.navbar-vg .btn-book {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 10px 28px;
    transition: var(--transition);
    margin-left: 12px;
}

.navbar-vg .btn-book:hover {
    background: var(--gold);
    color: var(--navy) !important;
}

.navbar-vg .btn-book::after { display: none; }

.navbar-vg .dropdown-menu {
    background: var(--navy);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 0;
    padding: 0;
    margin-top: 0;
}

.navbar-vg .dropdown-item {
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    padding: 12px 20px;
    transition: var(--transition);
}

.navbar-vg .dropdown-item:hover {
    background: rgba(201,168,76,0.1);
    color: var(--gold);
}

.navbar-toggler {
    border: 1px solid rgba(201,168,76,0.4);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease, transform 8s ease;
    transform: scale(1.08);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide-1 {
    background-image: linear-gradient(rgba(10,35,66,0.55), rgba(10,35,66,0.65)), url('img/carousel-1.jpg');
}

.hero-slide-2 {
    background-image: linear-gradient(rgba(10,35,66,0.55), rgba(10,35,66,0.65)), url('img/carousel-2.jpg');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,35,66,0.7) 0%, rgba(10,35,66,0.3) 60%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease 0.4s forwards;
}

.hero-eyebrow::before, .hero-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(25px);
    animation: heroFadeUp 0.9s ease 0.7s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.9s ease 1s forwards;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.9s ease 1.2s forwards;
}

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.btn-vg-primary {
    background: var(--gold);
    color: var(--navy);
    border: 1px solid var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 36px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    cursor: pointer;
}

.btn-vg-primary:hover {
    background: transparent;
    color: var(--gold);
}

.btn-vg-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 14px 36px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    cursor: pointer;
}

.btn-vg-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: heroFadeUp 1s ease 1.8s both;
}

.scroll-mouse {
    width: 22px; height: 36px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    display: flex; justify-content: center; padding-top: 6px;
}

.scroll-mouse::after {
    content: '';
    width: 4px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollBounce 1.8s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    60% { transform: translateY(10px); opacity: 0.3; }
}

/* Hero slide indicators */
.hero-dots {
    position: absolute;
    right: 40px; top: 50%; transform: translateY(-50%);
    z-index: 3;
    display: flex; flex-direction: column; gap: 10px;
}

.hero-dot {
    width: 4px; height: 28px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.hero-dot.active {
    background: var(--gold);
    height: 44px;
}

.hero-dot:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ============================================================
   BOOKING BAR
   ============================================================ */
.booking-bar {
    background: var(--white);
    box-shadow: 0 20px 60px rgba(10,35,66,0.12);
    padding: 0;
    position: relative;
    z-index: 10;
}

.booking-bar-inner {
    display: flex;
    align-items: stretch;
}

.booking-field {
    flex: 1;
    padding: 24px 28px;
    border-right: 1px solid rgba(0,0,0,0.06);
    position: relative;
    transition: background 0.3s ease;
}

.booking-field:hover { background: var(--cream); }

.booking-field label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.booking-field input, .booking-field select {
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--dark-text);
    width: 100%;
}

.booking-field select { cursor: pointer; }

.booking-submit {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 0 48px;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    display: flex; align-items: center; gap: 10px;
}

.booking-submit:hover { background: var(--navy); color: var(--gold); }

/* ============================================================
   SECTION TYPOGRAPHY
   ============================================================ */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-tag::before, .section-tag::after {
    content: '';
    width: 30px;
    height: 1px;
    background: currentColor;
}

.section-tag.left::before { display: none; }

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--dark-text);
    line-height: 1.2;
}

.section-heading em {
    font-style: italic;
    color: var(--gold);
}

.divider-gold {
    width: 48px; height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    margin: 20px 0;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.stat-card {
    text-align: center;
    padding: 28px 20px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover { background: var(--cream); }

.stat-card .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
    display: block;
}

.stat-card .stat-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 6px;
    display: block;
}

.about-img-grid {
    position: relative;
}

.about-img-grid .img-main {
    width: 72%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.about-img-grid .img-accent {
    position: absolute;
    right: 0; bottom: -30px;
    width: 50%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 6px solid var(--white);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-img-grid::after {
    content: '';
    position: absolute;
    top: 20px; right: 20px;
    width: 60%;
    height: 60%;
    border: 1px solid var(--gold);
    z-index: -1;
}

.experience-badge {
    position: absolute;
    top: 30px; left: 30px;
    background: var(--navy);
    color: var(--white);
    padding: 24px;
    text-align: center;
    z-index: 2;
}

.experience-badge span:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.experience-badge span:last-child {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

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

.room-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.room-card:hover { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(10,35,66,0.14); }

.room-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.room-price-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--navy);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 8px 16px;
}

.room-price-badge span { font-size: 1.1rem; font-weight: 600; }

.room-card-body {
    padding: 28px;
}

.room-amenities {
    display: flex;
    gap: 16px;
    margin: 12px 0 18px;
    flex-wrap: wrap;
}

.room-amenity {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.75rem;
    color: var(--body-text);
}

.room-amenity i { color: var(--gold); font-size: 0.8rem; }

.room-stars { color: var(--gold); font-size: 0.7rem; letter-spacing: 2px; }

.room-card-footer {
    display: flex;
    gap: 10px;
    padding: 0 28px 28px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(201,168,76,0.04));
    pointer-events: none;
}

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-6px); }
.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
    width: 70px; height: 70px;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: var(--gold);
    border-color: var(--gold);
}

.service-icon-wrap i {
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap i { color: var(--navy); }

.service-card h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

/* ============================================================
   EXPERIENCE / VIDEO SECTION
   ============================================================ */
.experience-section {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.experience-text {
    background: var(--dark-text);
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-visual {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    background: linear-gradient(rgba(10,35,66,0.3), rgba(10,35,66,0.4)), url('img/video.jpg') center/cover;
}

.play-btn-wrap {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
}

.btn-play-vg {
    width: 80px; height: 80px;
    background: rgba(201,168,76,0.15);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.btn-play-vg::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0; }
}

.btn-play-vg i { color: var(--gold); font-size: 1.4rem; margin-left: 4px; }
.btn-play-vg:hover { background: var(--gold); }
.btn-play-vg:hover i { color: var(--navy); }

.btn-play-vg:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--cream);
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover { box-shadow: 0 20px 60px rgba(10,35,66,0.1); }

.testimonial-quote {
    font-size: 3rem;
    color: var(--gold-light);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--body-text);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author img {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.testimonial-author h6 {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 2px;
}

.testimonial-author small { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.1em; }

.t-stars { color: var(--gold); font-size: 0.7rem; margin-bottom: 16px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 70%);
    pointer-events: none;
}

.newsletter-input-wrap {
    display: flex;
    max-width: 520px;
    border: 1px solid rgba(201,168,76,0.3);
    overflow: hidden;
}

.newsletter-input-wrap input {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: none;
    outline: none;
    padding: 14px 20px;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: var(--white);
}

.newsletter-input-wrap input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-input-wrap button {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 14px 28px;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-input-wrap button:hover { background: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-vg {
    background: #060f1e;
    padding: 80px 0 0;
    color: rgba(255,255,255,0.6);
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 4px;
}

.footer-brand .tagline {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.8;
    max-width: 280px;
}

.footer-heading {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    text-decoration: none;
    padding: 5px 0;
    transition: var(--transition);
}

.footer-link::before {
    content: '—';
    color: var(--gold);
    font-size: 0.7rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex; gap: 14px;
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.footer-contact-item i { color: var(--gold); margin-top: 3px; font-size: 0.8rem; }

.footer-socials { display: flex; gap: 10px; margin-top: 20px; }

.footer-social-btn {
    width: 36px; height: 36px;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top-vg {
    position: fixed;
    bottom: 36px; right: 36px;
    width: 46px; height: 46px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 500;
    text-decoration: none;
}

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

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

.back-to-top-vg:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ============================================================
   SCROLL ANIMATIONS (shared)
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-left {
    opacity: 0; transform: translateX(-45px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible { opacity: 1; transform: none; }

.reveal-right {
    opacity: 0; transform: translateX(45px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible { opacity: 1; transform: none; }

.reveal-scale {
    opacity: 0; transform: scale(0.9);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.34s; }
.delay-4 { transition-delay: 0.46s; }
.delay-5 { transition-delay: 0.58s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .navbar-vg .nav-link { padding: 10px 16px !important; }
    .navbar-vg .nav-link::after { display: none; }
    .booking-bar-inner { flex-direction: column; }
    .booking-field { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
    .booking-submit { padding: 18px 28px; justify-content: center; }
    .experience-section { grid-template-columns: 1fr; }
    .experience-text { padding: 60px 30px; }
    .hero-dots { display: none; }
}

@media (max-width: 767.98px) {
    .hero-section { height: 85vh; }
    .hero-cta-group { flex-direction: column; align-items: flex-start; }
    .about-img-grid .img-accent { display: none; }
    .about-img-grid .img-main { width: 100%; }
    .about-img-grid::after { display: none; }
    .experience-badge { display: none; }
    .footer-vg .footer-brand p { max-width: 100%; }
}

/* ============================================================
   MICRO ANIMATIONS & CURSOR
   ============================================================ */
a, button { cursor: pointer; }

.btn-vg-primary:active, .btn-vg-outline:active { transform: scale(0.97); }

img { transition: opacity 0.3s ease; }

.room-card, .service-card, .testimonial-card { will-change: transform; }

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Quick Booking Bar Enhancement */
.quick-booking-bar {
    background: white;
    border-radius: 60px;
    padding: 6px;
    box-shadow: 0 15px 40px rgba(10,35,66,0.15);
    margin-top: -40px;
    position: relative;
    z-index: 100;
    animation: barFloat 1s ease-out;
}

@keyframes barFloat {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quick-booking-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-field {
    flex: 1;
    padding: 12px 20px;
    border-right: 1px solid rgba(10,35,66,0.1);
    transition: all 0.3s ease;
}

.quick-field:last-of-type {
    border-right: none;
}

.quick-field:hover {
    background: var(--cream);
    border-radius: 40px;
}

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

.quick-field input,
.quick-field select {
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    width: 100%;
    cursor: pointer;
}

.quick-submit-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.quick-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.quick-submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.quick-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}

.quick-submit-btn i {
    font-size: 1rem;
}

@media (max-width: 991px) {
    .quick-booking-bar {
        border-radius: 30px;
        margin-top: -20px;
    }
    
    .quick-booking-form {
        flex-direction: column;
        padding: 15px;
    }
    
    .quick-field {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(10,35,66,0.1);
        padding: 15px 0;
    }
    
    .quick-field:last-of-type {
        border-bottom: none;
    }
    
    .quick-submit-btn {
        width: 100%;
        justify-content: center;
    }
}