/* ============================================================
   LOBO'S GUEST HOUSE — Luxury CSS
   Aesthetic: Refined Colonial Tropical · Architectural Digest
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

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

:root {
    /* Palette */
    --forest:       #2a3825;
    --moss:         #4a5c3a;
    --sage:         #7a9163;
    --champagne:    #f5eedf;
    --sand:         #e8ddc8;
    --cream:        #faf7f2;
    --bronze:       #b8955a;
    --gold:         #d4a853;
    --warm-white:   #fefcf8;
    --ink:          #1c2219;
    --muted:        #7a7468;

    /* Typography */
    --serif:        'Cormorant Garamond', Georgia, serif;
    --sans:         'Jost', system-ui, sans-serif;

    /* Spacing rhythm */
    --space-xs:     0.5rem;
    --space-sm:     1rem;
    --space-md:     2rem;
    --space-lg:     4rem;
    --space-xl:     8rem;

    /* Elevation */
    --shadow-sm:    0 2px 12px rgba(42,56,37,0.07);
    --shadow-md:    0 8px 40px rgba(42,56,37,0.12);
    --shadow-lg:    0 20px 80px rgba(42,56,37,0.18);

    /* Transitions */
    --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --slow:         0.7s var(--ease);
    --med:          0.4s var(--ease);
    --fast:         0.2s var(--ease);
}

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

body {
    font-family: var(--sans);
    font-weight: 300;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--champagne); }
::-webkit-scrollbar-thumb { background: var(--moss); border-radius: 2px; }

/* ── Selection ────────────────────────────────────────────── */
::selection { background: var(--gold); color: var(--forest); }

/* ── Typography Base ──────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

p { color: var(--muted); }

/* ── Utility ──────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ── Grain Overlay ────────────────────────────────────────── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */

.nav-hero {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 5%;
    transition: background var(--med), padding var(--med);
}

.nav-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 50px;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter var(--med);
}

.nav-logo img.dark {
    filter: none;
}

.nav-contact-link {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 0.55rem 1.5rem;
    border-radius: 100px;
    transition: all var(--med);
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.05);
}

.nav-contact-link:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.8);
    color: white;
}

/* Scrolled hero nav */
.nav-hero.scrolled {
    background: rgba(250,247,242,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(42,56,37,0.08);
    box-shadow: var(--shadow-sm);
}

.nav-hero.scrolled .nav-contact-link {
    color: var(--forest);
    border-color: rgba(42,56,37,0.3);
    background: transparent;
}

.nav-hero.scrolled .nav-contact-link:hover {
    background: var(--forest);
    color: var(--cream);
    border-color: var(--forest);
}

.nav-hero.scrolled .nav-logo img {
    filter: none;
}

/* Main nav */
.nav-main {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(250,247,242,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(42,56,37,0.08);
    padding: 0 5%;
    transform: translateY(-100%);
    transition: transform var(--med);
    box-shadow: var(--shadow-sm);
}

.nav-main.nav-sticky {
    transform: translateY(0);
}

.nav-main ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    list-style: none;
    height: 60px;
}

.nav-main a {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--moss);
    text-decoration: none;
    position: relative;
    transition: color var(--fast);
}

.nav-main a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bronze);
    transition: width var(--med);
}

.nav-main a:hover {
    color: var(--forest);
}

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

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--forest);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(to bottom, rgba(28,34,25,0.35) 0%, rgba(28,34,25,0.55) 100%),
        url('images/herobackground.jpg') center/cover no-repeat;
    transition: transform 8s var(--ease);
    will-change: transform;
}

.hero:hover .hero-bg {
    transform: scale(1.03);
}

/* Elegant vignette */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(28,34,25,0.4) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--space-md);
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 1s var(--ease) 0.3s forwards;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300;
    color: var(--warm-white);
    letter-spacing: -0.01em;
    line-height: 1.0;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 1.1s var(--ease) 0.5s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--sand);
}

.hero-tagline {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: rgba(245,238,223,0.75);
    text-transform: uppercase;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 1s var(--ease) 0.7s forwards;
}

.hero-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem auto;
    opacity: 0;
    animation: fadeIn 1s var(--ease) 0.9s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 1s var(--ease) 1s forwards;
}

/* Scroll hint */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s var(--ease) 1.5s forwards;
}

.hero-scroll span {
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

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

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

/* ── Buttons ──────────────────────────────────────────────── */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--forest);
    background: var(--gold);
    padding: 1rem 2.5rem;
    border-radius: 100px;
    transition: all var(--med);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--bronze);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184,149,90,0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    background: transparent;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.35);
    transition: all var(--med);
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    color: white;
    transform: translateY(-2px);
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--cream);
    background: var(--forest);
    padding: 1rem 2.5rem;
    border-radius: 100px;
    transition: all var(--med);
    border: none;
    cursor: pointer;
}

.btn-dark:hover {
    background: var(--moss);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(42,56,37,0.35);
}

/* ═══════════════════════════════════════════════════════════
   SECTION BASE
═══════════════════════════════════════════════════════════ */

section {
    padding: var(--space-xl) 5%;
    position: relative;
}

.section-label {
    display: block;
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--bronze);
    margin-bottom: 1rem;
    text-align: center;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--forest);
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title em {
    font-style: italic;
    color: var(--moss);
}

.section-rule {
    width: 48px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--bronze), transparent);
    margin: 0 auto 3rem;
}

.section-intro {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 4rem;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   INTRO / WELCOME STRIP
═══════════════════════════════════════════════════════════ */

.welcome-strip {
    background: var(--forest);
    padding: 5rem 5%;
    text-align: center;
}

.welcome-strip .eyebrow {
    display: block;
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.welcome-strip h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--champagne);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    font-style: italic;
    line-height: 1.3;
}

.welcome-strip p {
    color: rgba(245,238,223,0.65);
    font-size: 0.9rem;
    max-width: 520px;
    margin: 0 auto;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════
   ROOMS
═══════════════════════════════════════════════════════════ */

#rooms {
    background: var(--warm-white);
}

.room-showcase {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Slideshow */
.room-slideshow { position: relative; }

.slideshow-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.slide { display: none; width: 100%; height: 100%; }
.slide.active { display: block; }
.slide img { width: 100%; height: 100%; object-fit: cover; }

@keyframes fadeEffect {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade { animation: fadeEffect 0.8s var(--ease); }

/* Slideshow arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 44px;
    height: 44px;
    background: rgba(250,247,242,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(42,56,37,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--forest);
    transition: all var(--med);
    user-select: none;
    z-index: 2;
}

.prev { left: 1rem; }
.next { right: 1rem; }

.prev:hover, .next:hover {
    background: var(--warm-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-50%) scale(1.05);
}

/* Dots */
.dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 1.5rem 0 0;
}

.dot {
    cursor: pointer;
    width: 6px;
    height: 6px;
    background: var(--sand);
    border-radius: 50%;
    transition: all var(--med);
}

.dot.active, .dot:hover {
    background: var(--bronze);
    transform: scale(1.3);
}

/* Room info */
.room-info-box {
    padding-top: 2rem;
}

.room-info-box h3 {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--forest);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.room-description {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-size: 0.93rem;
}

.room-features-label {
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bronze);
    margin-bottom: 1rem;
    display: block;
}

.amenities {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
    margin-bottom: 2.5rem;
}

.amenities li {
    font-size: 0.85rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 300;
}

.amenities li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--bronze);
    flex-shrink: 0;
}

.pricing-info {
    padding-top: 2rem;
    border-top: 1px solid var(--sand);
}

.price-from {
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 0.3rem;
}

.room-price {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 1.5rem;
    display: block;
}

/* ═══════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════ */

#gallery {
    background: var(--champagne);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-caption {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,34,25,0.65) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--med);
}

.gallery-caption span {
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--champagne);
    font-weight: 300;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   LOCATION
═══════════════════════════════════════════════════════════ */

#location {
    background: var(--warm-white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.map-container {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(42,56,37,0.1);
    border-radius: 4px;
    z-index: 1;
    pointer-events: none;
}

.map-iframe {
    width: 100%;
    height: 480px;
    border: none;
    display: block;
    filter: saturate(0.85) contrast(1.05);
}

.location-info { padding-top: 1rem; }

.location-info h3 {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--forest);
    margin-bottom: 1rem;
}

.location-info .address {
    font-family: var(--sans);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bronze);
    margin-bottom: 1.5rem;
    display: block;
}

.location-info p {
    font-size: 0.93rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.nearby-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nearby-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--sand);
    font-size: 0.88rem;
    color: var(--ink);
}

.nearby-list li:last-child { border-bottom: none; }

.nearby-icon {
    font-size: 1rem;
    width: 36px;
    height: 36px;
    background: var(--champagne);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nearby-list strong {
    display: block;
    font-weight: 400;
    color: var(--forest);
    font-size: 0.82rem;
}

.nearby-list span {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */

#contact {
    background: var(--champagne);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-left h3 {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--forest);
    margin-bottom: 1rem;
}

.contact-left p {
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--sand);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--warm-white);
    text-decoration: none;
    transition: background var(--fast);
}

.contact-method:hover {
    background: var(--cream);
}

.contact-method-icon {
    width: 40px;
    height: 40px;
    background: var(--champagne);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-method-text strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--forest);
    letter-spacing: 0.02em;
}

.contact-method-text span {
    font-size: 0.78rem;
    color: var(--muted);
}

/* Booking Form */
.booking-form {
    background: var(--warm-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.booking-form h3 {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 300;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 2rem;
    display: block;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--cream);
    border: 1px solid rgba(42,56,37,0.12);
    border-radius: 4px;
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--ink);
    transition: all var(--fast);
    appearance: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(122,116,104,0.5);
    font-size: 0.85rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--moss);
    background: var(--warm-white);
    box-shadow: 0 0 0 3px rgba(74,92,58,0.08);
}

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

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--forest);
    color: var(--champagne);
    border: none;
    border-radius: 4px;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--med);
    margin-top: 0.5rem;
}

.submit-button:hover {
    background: var(--moss);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42,56,37,0.3);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */

footer {
    background: var(--ink);
    color: rgba(245,238,223,0.65);
    padding: 5rem 5% 3rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(245,238,223,0.1);
}

.footer-brand img {
    height: 45px;
    filter: brightness(0) invert(0.85);
    margin-bottom: 1.5rem;
    display: block;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(245,238,223,0.55);
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(245,238,223,0.55);
    text-decoration: none;
    transition: color var(--fast);
}

.footer-col ul li a:hover {
    color: var(--champagne);
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 0.8rem;
}

.footer-contact-item strong {
    font-size: 0.72rem;
    color: rgba(245,238,223,0.4);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.footer-contact-item a,
.footer-contact-item span {
    font-size: 0.85rem;
    color: rgba(245,238,223,0.65);
    text-decoration: none;
    transition: color var(--fast);
}

.footer-contact-item a:hover {
    color: var(--champagne);
}

.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(245,238,223,0.3);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: rgba(245,238,223,0.4);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    transition: color var(--fast);
}

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

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════ */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .room-showcase,
    .location-grid,
    .contact-layout,
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .gallery-item:first-child {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 5rem;
        --space-lg: 3rem;
    }

    section { padding: var(--space-xl) 6%; }

    .hero h1 { font-size: 3rem; }

    .nav-main ul { gap: 1.5rem; }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item { height: 260px; }

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

    .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .booking-form { padding: 1.75rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .amenities { grid-template-columns: 1fr; }
}
