/* ============================================
   OSCATINA HOTEL — Modern Vibrant Design
   Emerald Green + Cream Palette
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-emerald-900: #064e3b;
    --color-emerald-800: #065f46;
    --color-emerald-700: #047857;
    --color-emerald-600: #059669;
    --color-emerald-500: #10b981;
    --color-emerald-400: #34d399;
    --color-cream: #faf5f0;
    --color-cream-dark: #f0e6d8;
    --color-warm: #d4a373;
    --color-warm-dark: #b8865a;
    --color-white: #ffffff;
    --color-black: #1a1a1a;
    --color-gray-100: #f7f7f7;
    --color-gray-200: #e5e5e5;
    --color-gray-400: #a3a3a3;
    --color-gray-600: #525252;
    --color-gray-800: #262626;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray-800);
    background-color: var(--color-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--color-emerald-800);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 500;
}

.skip-link:focus {
    top: 16px;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 245, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(250, 245, 240, 0.95);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-emerald-900);
}

.logo-icon {
    color: var(--color-emerald-700);
}

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

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gray-600);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-emerald-700);
    background: rgba(6, 78, 59, 0.06);
}

.btn-nav {
    background: var(--color-emerald-700);
    color: var(--color-white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    margin-left: 8px;
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--color-emerald-800) !important;
    color: var(--color-white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 78, 59, 0.3);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: rgba(6, 78, 59, 0.06);
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-emerald-800);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--color-emerald-800);
    transition: var(--transition);
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.mobile-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.mobile-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

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

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

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

.geo-circle--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 78, 59, 0.06) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.geo-circle--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.12) 0%, transparent 70%);
    bottom: 10%;
    left: -50px;
}

.geo-rect {
    position: absolute;
    border-radius: var(--radius-lg);
}

.geo-rect--1 {
    width: 120px;
    height: 120px;
    background: rgba(6, 78, 59, 0.05);
    transform: rotate(45deg);
    top: 15%;
    left: 45%;
}

.geo-rect--2 {
    width: 80px;
    height: 80px;
    background: rgba(212, 163, 115, 0.15);
    transform: rotate(30deg);
    bottom: 20%;
    right: 5%;
}

.geo-dots {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 25%;
    left: 8%;
    background-image: radial-gradient(circle, var(--color-emerald-400) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.4;
}

/* Hero Container */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(6, 78, 59, 0.08);
    border: 1px solid rgba(6, 78, 59, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-emerald-700);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

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

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-emerald-900);
    margin-bottom: 20px;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray-600);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-emerald-700);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(6, 78, 59, 0.25);
}

.btn-primary:hover {
    background: var(--color-emerald-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 78, 59, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--color-emerald-800);
    border: 2px solid var(--color-emerald-200, rgba(6, 78, 59, 0.2));
}

.btn-outline:hover {
    border-color: var(--color-emerald-700);
    background: rgba(6, 78, 59, 0.04);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

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

.btn-light {
    background: var(--color-white);
    color: var(--color-emerald-800);
}

.btn-light:hover {
    background: var(--color-cream);
    transform: translateY(-1px);
}

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

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-emerald-800);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--color-gray-200);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
}

.hero-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.hero-image-accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-cream);
}

.hero-image-accent img {
    width: 100%;
    display: block;
}

.hero-card {
    position: absolute;
    top: 40px;
    right: -20px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-card-icon {
    width: 44px;
    height: 44px;
    background: var(--color-emerald-700);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

.hero-card-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gray-800);
    line-height: 1.3;
}

.hero-card-sub {
    font-size: 0.75rem;
    color: var(--color-gray-400);
    margin-top: 2px;
}

/* --- Section Shared Styles --- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(6, 78, 59, 0.08);
    color: var(--color-emerald-700);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: var(--color-emerald-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

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

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-gray-600);
    line-height: 1.8;
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.75);
}

/* --- Rooms Section --- */
.rooms {
    padding: 100px 0;
    background: var(--color-white);
    position: relative;
}

.rooms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-emerald-700), var(--color-warm), var(--color-emerald-500));
}

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

.room-card {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.room-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    background: var(--color-emerald-700);
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 50px;
}

.room-card-tag.tag-accent {
    background: var(--color-warm);
}

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

.room-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-emerald-900);
    margin-bottom: 10px;
}

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

.room-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--color-gray-600);
}

.room-features li svg {
    color: var(--color-emerald-600);
    flex-shrink: 0;
}

/* --- Amenities Section --- */
.amenities {
    padding: 100px 0;
    background: var(--color-emerald-900);
    position: relative;
    overflow: hidden;
}

.amenities-shape-left {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.amenities-shape-right {
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(212, 163, 115, 0.08);
    border-radius: var(--radius-lg);
    bottom: -50px;
    right: -50px;
    transform: rotate(30deg);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.amenity-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
}

.amenity-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.amenity-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 163, 115, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-warm);
    margin-bottom: 20px;
}

.amenity-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 10px;
}

.amenity-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* --- About Section --- */
.about {
    padding: 100px 0;
    background: var(--color-cream);
}

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

.about-images {
    position: relative;
}

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

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

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-cream);
}

.about-img-secondary img {
    width: 100%;
    display: block;
}

.about-pattern {
    position: absolute;
    width: 100px;
    height: 100px;
    top: -20px;
    left: -20px;
    background-image: radial-gradient(circle, var(--color-emerald-400) 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.4;
    z-index: -1;
}

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

.about-text {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    gap: 32px;
    margin-top: 36px;
}

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

.value-icon {
    width: 40px;
    height: 40px;
    background: rgba(6, 78, 59, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-emerald-700);
    flex-shrink: 0;
}

.value-item span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-emerald-900);
}

/* --- Location Section --- */
.location {
    padding: 100px 0;
    background: var(--color-emerald-800);
    position: relative;
    overflow: hidden;
}

.location::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    bottom: -200px;
    right: -100px;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.location-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.85;
    margin-bottom: 36px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.location-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-warm);
    flex-shrink: 0;
}

.location-detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.location-detail-value {
    font-size: 0.95rem;
    color: var(--color-white);
    line-height: 1.6;
}

/* Map Placeholder */
.location-map {
    position: relative;
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 48px 36px;
    text-align: center;
}

.map-pin {
    color: var(--color-warm);
    margin: 0 auto 20px;
    position: relative;
}

.map-pin-dot {
    width: 12px;
    height: 12px;
    background: var(--color-warm);
    border-radius: 50%;
    margin: 0 auto;
    animation: pulse 2s ease-in-out infinite;
}

.map-address {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* --- Contact Section --- */
.contact {
    padding: 100px 0;
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.contact-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(6, 78, 59, 0.04);
    border-radius: var(--radius-xl);
    top: -50px;
    right: -50px;
    transform: rotate(15deg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-text {
    font-size: 1.05rem;
    color: var(--color-gray-600);
    line-height: 1.85;
    margin-bottom: 36px;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.contact-method:hover {
    border-color: var(--color-emerald-200, rgba(6, 78, 59, 0.15));
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.contact-method-icon {
    width: 52px;
    height: 52px;
    background: var(--color-emerald-700);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

.contact-method-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gray-400);
    margin-bottom: 4px;
}

.contact-method-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-emerald-900);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.04);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-emerald-900);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gray-800);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-gray-800);
    background: var(--color-cream);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: var(--color-gray-400);
}

.form-input:focus {
    border-color: var(--color-emerald-500);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    color: var(--color-emerald-600);
    margin: 0 auto 20px;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-emerald-900);
    margin-bottom: 12px;
}

.success-text {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    background: var(--color-emerald-900);
    color: var(--color-white);
    padding: 64px 0 0;
}

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

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-top: 16px;
    max-width: 300px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-white);
}

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

.footer-links a,
.footer-links span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    line-height: 1.5;
}

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

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

.footer-tagline {
    font-style: italic;
    color: rgba(255, 255, 255, 0.3);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

    .hero-image-accent {
        left: -20px;
        width: 180px;
    }

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

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

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

    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-cream);
        border-bottom: 1px solid rgba(0,0,0,0.08);
        padding: 16px 24px;
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-list {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

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

    .btn-nav {
        margin-left: 0;
        text-align: center;
        margin-top: 8px;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

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

    .hero-image-wrapper {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-image-accent {
        width: 160px;
        left: -10px;
        bottom: -20px;
    }

    .hero-card {
        right: 0;
        top: 20px;
    }

    .hero-stats {
        gap: 16px;
    }

    /* Rooms */
    .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    /* Amenities */
    .amenities-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    /* About */
    .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-images {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .about-values {
        flex-wrap: wrap;
    }

    /* Location */
    .location-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 12px;
    }

    .stat-divider {
        display: none;
    }

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

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

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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