/* ============================================
   LAKE ROAD LODGE — Custom Styles
   Deep Navy (#0A1628) + Warm Gold (#C8960C)
   ============================================ */

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

:root {
    --navy: #0A1628;
    --navy-light: #132240;
    --navy-mid: #1A2D52;
    --gold: #C8960C;
    --gold-light: #E5B21E;
    --gold-pale: #F5E6B8;
    --white: #FFFFFF;
    --off-white: #F8F6F0;
    --cream: #FDF9F0;
    --gray-100: #F4F2ED;
    --gray-200: #E8E4DC;
    --gray-300: #D4CFC4;
    --gray-500: #8A8578;
    --gray-700: #4A4539;
    --gray-900: #2A2519;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 12px 48px rgba(10, 22, 40, 0.16);
    --shadow-gold: 0 8px 32px rgba(200, 150, 12, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 150, 12, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-logo svg {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 20px;
    border: 1.5px solid rgba(200, 150, 12, 0.4);
    border-radius: var(--radius-sm);
    margin-left: 12px;
    transition: all 0.3s ease;
}

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

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 72px 0 0;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 150, 12, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(200, 150, 12, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.hero-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    padding-right: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
    padding: 8px 16px;
    background: rgba(200, 150, 12, 0.1);
    border: 1px solid rgba(200, 150, 12, 0.2);
    border-radius: 50px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5vw, 4.25rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

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

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.hero-image-main img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--navy);
    z-index: 3;
}

.hero-image-accent img {
    width: 320px;
    height: 240px;
    object-fit: cover;
}

.hero-gold-block {
    position: absolute;
    top: 40px;
    right: -20px;
    width: 96px;
    height: 96px;
    background: var(--gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    z-index: 4;
    box-shadow: var(--shadow-gold);
}

.hero-gold-block svg {
    width: 48px;
    height: 48px;
}

/* Hero Geometric Shapes */
.hero-geo-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
}

.geo-circle-1 {
    width: 420px;
    height: 420px;
    border: 1.5px solid rgba(200, 150, 12, 0.12);
    top: -80px;
    right: -100px;
}

.geo-circle-2 {
    width: 200px;
    height: 200px;
    background: rgba(200, 150, 12, 0.05);
    bottom: 120px;
    left: -60px;
}

.geo-circle-3 {
    width: 120px;
    height: 120px;
    border: 1.5px solid rgba(200, 150, 12, 0.08);
    bottom: 200px;
    left: 30%;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
}

.geo-triangle-1 {
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(200, 150, 12, 0.08);
    top: 200px;
    left: 5%;
    transform: rotate(-15deg);
}

.geo-line {
    position: absolute;
    background: rgba(200, 150, 12, 0.1);
}

.geo-line-1 {
    width: 120px;
    height: 1.5px;
    top: 160px;
    right: 15%;
    transform: rotate(30deg);
}

.geo-line-2 {
    width: 80px;
    height: 1.5px;
    bottom: 250px;
    left: 8%;
    transform: rotate(-20deg);
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 5;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(200, 150, 12, 0.5), transparent);
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(200, 150, 12, 0.3);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 150, 12, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 150, 12, 0.05);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

/* --- Section Shared --- */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(200, 150, 12, 0.08);
    border: 1px solid rgba(200, 150, 12, 0.15);
    border-radius: 50px;
}

.section-tag--light {
    background: rgba(200, 150, 12, 0.15);
    color: var(--gold-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.section-title--light {
    color: var(--white);
}

.text-gold {
    color: var(--gold);
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--gray-500);
    line-height: 1.75;
    max-width: 560px;
}

.section-subtitle--light {
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
}

/* --- Rooms --- */
.rooms {
    position: relative;
    padding: 120px 0;
    background: var(--off-white);
    overflow: hidden;
}

.rooms .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

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

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

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 150, 12, 0.2);
}

.room-card--featured {
    border: 2px solid rgba(200, 150, 12, 0.3);
}

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

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

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

.room-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.room-card-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.room-card-desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.room-amenities {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.room-amenities li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: 6px 12px;
    background: var(--gray-100);
    border-radius: 50px;
}

.room-amenities li svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* Rooms Geo */
.rooms-geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--gold) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.15;
}

.geo-dots-1 {
    top: 80px;
    right: 40px;
}

.geo-stripe {
    position: absolute;
    width: 3px;
    height: 200px;
    background: repeating-linear-gradient(
        to bottom,
        rgba(200, 150, 12, 0.15) 0px,
        rgba(200, 150, 12, 0.15) 8px,
        transparent 8px,
        transparent 16px
    );
}

.geo-stripe-1 {
    bottom: 60px;
    left: 60px;
    transform: rotate(-15deg);
}

/* --- About --- */
.about {
    position: relative;
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
}

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

.about-image-stack {
    position: relative;
    height: 600px;
}

.about-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-1 {
    width: 300px;
    height: 400px;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img-2 {
    width: 260px;
    height: 200px;
    bottom: 40px;
    right: 0;
    z-index: 3;
    border: 4px solid var(--white);
}

.about-accent-block {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    z-index: 4;
    box-shadow: var(--shadow-gold);
}

.accent-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.accent-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
}

.about-content {
    max-width: 520px;
}

.about-text {
    font-size: 1.0625rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: rgba(200, 150, 12, 0.08);
    border: 1px solid rgba(200, 150, 12, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.about-geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-cross {
    position: absolute;
    width: 24px;
    height: 24px;
}

.geo-cross::before,
.geo-cross::after {
    content: '';
    position: absolute;
    background: var(--gold);
    opacity: 0.2;
}

.geo-cross::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
}

.geo-cross::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
}

.geo-cross-1 {
    top: 100px;
    right: 80px;
}

/* --- Explore --- */
.explore {
    position: relative;
    padding: 120px 0;
    background: var(--navy);
    overflow: hidden;
}

.explore-bg-block {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(200, 150, 12, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(200, 150, 12, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.explore .container {
    position: relative;
    z-index: 2;
}

.explore-header {
    text-align: center;
    margin-bottom: 64px;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.explore-card {
    background: var(--navy-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 150, 12, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.explore-card-img {
    height: 220px;
    overflow: hidden;
}

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

.explore-card:hover .explore-card-img img {
    transform: scale(1.05);
}

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

.explore-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.explore-card-body p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* --- Testimonial --- */
.testimonial-banner {
    position: relative;
    padding: 100px 0;
    background: var(--gold);
    overflow: hidden;
}

.testimonial-banner .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

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

.quote-icon {
    color: rgba(10, 22, 40, 0.15);
    margin-bottom: 24px;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    color: var(--navy);
    line-height: 1.6;
    margin-bottom: 32px;
}

.testimonial-meta {
    display: flex;
    justify-content: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9375rem;
}

.author-location {
    display: block;
    font-size: 0.8125rem;
    color: rgba(10, 22, 40, 0.6);
    margin-top: 2px;
}

.testimonial-geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-diamond {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(10, 22, 40, 0.06);
    transform: rotate(45deg);
}

.geo-diamond-1 {
    top: 40px;
    right: 10%;
}

/* --- Contact --- */
.contact {
    position: relative;
    padding: 120px 0;
    background: var(--off-white);
    overflow: hidden;
}

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

.contact-info {
    max-width: 480px;
}

.contact-desc {
    font-size: 1.0625rem;
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.detail-value {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.5;
}

.detail-link {
    color: var(--navy);
}

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

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--off-white);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(200, 150, 12, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

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

/* Form Success */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}

.form-success.show {
    display: flex;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(200, 150, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.success-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

.success-text {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 320px;
}

.contact-geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-stripe-2 {
    bottom: 40px;
    right: 40px;
    transform: rotate(15deg);
}

/* --- Map --- */
.map-section {
    position: relative;
    height: 380px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    filter: saturate(0.6) contrast(1.1);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.map-pin {
    position: relative;
    flex-shrink: 0;
}

.pin-pulse {
    position: absolute;
    inset: -8px;
    background: rgba(200, 150, 12, 0.2);
    border-radius: 50%;
    animation: pin-pulse 2s ease-in-out infinite;
}

@keyframes pin-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0; }
}

.map-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.map-address {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 2px;
}

/* --- Footer --- */
.footer {
    background: var(--navy);
    padding: 80px 0 0;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo svg {
    color: var(--gold);
}

.footer-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-links ul,
.footer-hours ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li,
.footer-hours li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-links svg,
.footer-hours svg {
    flex-shrink: 0;
    color: var(--gold);
    opacity: 0.6;
}

.hours-day {
    color: rgba(255, 255, 255, 0.5) !important;
}

.hours-time {
    margin-left: auto;
    color: var(--gold) !important;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-location {
    color: rgba(200, 150, 12, 0.5) !important;
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-image-main img {
        height: 500px;
    }

    .about-grid {
        gap: 48px;
    }

    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        transform: translateY(-120%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid rgba(200, 150, 12, 0.15);
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }

    .nav-cta {
        margin-left: 0;
        justify-content: center;
        width: 100%;
    }

    .hero {
        padding-top: 72px;
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero-image-accent {
        display: none;
    }

    .hero-image-main img {
        height: 400px;
    }

    .hero-gold-block {
        width: 72px;
        height: 72px;
        right: -10px;
    }

    .hero-gold-block svg {
        width: 36px;
        height: 36px;
    }

    .hero-scroll {
        display: none;
    }

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

    .about-image-stack {
        height: 400px;
    }

    .about-img-1 {
        width: 220px;
        height: 280px;
    }

    .about-img-2 {
        width: 200px;
        height: 160px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-content {
        max-width: 100%;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-info {
        max-width: 100%;
    }

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

    .map-overlay {
        flex-direction: column;
        text-align: center;
        padding: 16px 24px;
        width: 90%;
    }

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

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

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

    .section-title {
        font-size: 1.75rem;
    }

    .about-image-stack {
        height: 320px;
    }

    .about-img-1 {
        width: 180px;
        height: 220px;
    }

    .about-img-2 {
        width: 160px;
        height: 120px;
    }

    .rooms {
        padding: 80px 0;
    }

    .about {
        padding: 80px 0;
    }

    .explore {
        padding: 80px 0;
    }

    .contact {
        padding: 80px 0;
    }
}
