/* ============================================
   I.O.O.F. Charity Lodge — Brand Styles
   Terracotta + Sand | Vibrant Modern
   ============================================ */

:root {
    --terracotta: #C05A3A;
    --terracotta-dark: #A0482E;
    --terracotta-light: #D4755A;
    --sand: #E8D5C0;
    --sand-light: #F5EDE3;
    --sand-dark: #C4A882;
    --cream: #FDF8F3;
    --charcoal: #2A2220;
    --charcoal-light: #4A3F3A;
    --white: #FFFFFF;
    --font-body: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 243, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(192, 90, 58, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    background: rgba(253, 248, 243, 0.97);
    box-shadow: 0 4px 30px rgba(42, 34, 32, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--charcoal);
}

.nav-logo .logo-icon {
    color: var(--terracotta);
}

.nav-logo .logo-text span {
    color: var(--terracotta);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal-light);
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--terracotta);
}

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

.nav-cta {
    background: var(--terracotta) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s !important;
}

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

.nav-cta:hover {
    background: var(--terracotta-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(192, 90, 58, 0.3);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--charcoal);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(42, 34, 32, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-overlay.active {
    opacity: 1;
}

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

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

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--terracotta);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--sand-dark);
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--terracotta-light);
    top: 40%;
    left: 35%;
    animation: float 6s ease-in-out infinite;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: var(--sand);
    bottom: 20%;
    right: 30%;
    animation: float 7s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-10px, 15px) scale(0.95); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--sand-light);
    border: 1px solid var(--sand);
    color: var(--terracotta);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s ease 0.1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-headline .accent {
    color: var(--terracotta);
    font-style: italic;
}

.hero-headline .underline-text {
    position: relative;
    display: inline-block;
}

.hero-headline .underline-text::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--sand);
    z-index: -1;
    border-radius: 4px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 480px;
    animation: slideUp 0.8s ease 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: slideUp 0.8s ease 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 90, 58, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-3px);
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: slideUp 0.8s ease 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--charcoal-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 4px;
    height: 4px;
    background: var(--sand-dark);
    border-radius: 50%;
}

/* Hero Right */
.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

.hero-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(42, 34, 32, 0.15);
    position: relative;
    z-index: 2;
}

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

.hero-img-accent {
    position: absolute;
    bottom: -40px;
    left: -60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(42, 34, 32, 0.12);
    z-index: 3;
    border: 4px solid var(--cream);
}

.hero-img-accent img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    top: 40px;
    right: -30px;
    background: var(--white);
    padding: 1rem 1.2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(42, 34, 32, 0.12);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 4;
    animation: floatCard 4s ease-in-out infinite;
}

.hero-floating-card svg {
    color: var(--terracotta);
    flex-shrink: 0;
}

.hero-floating-card strong {
    display: block;
    font-size: 0.85rem;
    color: var(--charcoal);
}

.hero-floating-card span {
    font-size: 0.78rem;
    color: var(--charcoal-light);
}

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

/* ============================================
   Marquee
   ============================================ */
.marquee {
    background: var(--terracotta);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    align-items: center;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.marquee-track span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.marquee-track span:first-child::before {
    content: '';
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   Section Shared
   ============================================ */
.section-tag {
    display: inline-block;
    background: var(--sand-light);
    color: var(--terracotta);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1.2rem;
}

.section-title .accent {
    color: var(--terracotta);
}

.section-title .italic-accent {
    color: var(--terracotta);
    font-style: italic;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--charcoal-light);
    max-width: 500px;
    line-height: 1.7;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 7rem 0;
    background: var(--cream);
    position: relative;
}

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

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

.about-text {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.feature-card:hover {
    border-color: var(--sand);
    box-shadow: 0 8px 25px rgba(42, 34, 32, 0.06);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--sand-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--terracotta);
    color: var(--white);
}

.feature-card strong {
    display: block;
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 0.2rem;
}

.feature-card span {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    line-height: 1.5;
}

.about-visual {
    position: relative;
}

.visual-block {
    border-radius: 20px;
    overflow: hidden;
}

.visual-block-1 {
    box-shadow: 0 20px 50px rgba(42, 34, 32, 0.1);
}

.visual-block-1 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.visual-block-2 {
    margin-top: 1.5rem;
    background: var(--terracotta);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.visual-block-2::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.visual-block-2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.visual-quote {
    position: relative;
    z-index: 1;
}

.visual-quote svg {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.visual-quote p {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
}

/* ============================================
   Rooms Section
   ============================================ */
.rooms {
    padding: 7rem 0;
    background: var(--sand-light);
    position: relative;
}

.rooms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--sand-dark), var(--terracotta-light));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

.room-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(42, 34, 32, 0.05);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(42, 34, 32, 0.12);
}

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

.room-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-image img {
    transform: scale(1.08);
}

.room-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--terracotta);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.room-info {
    padding: 1.5rem;
}

.room-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.6rem;
}

.room-info p {
    font-size: 0.92rem;
    color: var(--charcoal-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.room-amenities {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.room-amenities li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--charcoal-light);
    font-weight: 500;
}

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

/* ============================================
   CTA Band
   ============================================ */
.cta-band {
    padding: 6rem 0;
    background: var(--terracotta);
    position: relative;
    overflow: hidden;
}

.cta-band-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: var(--white);
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -100px;
}

.cta-shape-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    right: 10%;
}

.cta-shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: -30px;
}

.cta-band-content {
    position: relative;
    z-index: 1;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.cta-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.cta-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.cta-item-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
    flex-shrink: 0;
}

.cta-item strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.cta-item span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* ============================================
   Location Section
   ============================================ */
.location {
    padding: 7rem 0;
    background: var(--cream);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-text {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-icon {
    width: 52px;
    height: 52px;
    background: var(--sand-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
    transition: all 0.3s;
}

.detail-item:hover .detail-icon {
    background: var(--terracotta);
    color: var(--white);
}

.detail-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 0.2rem;
}

.detail-item span,
.detail-item a {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    line-height: 1.6;
}

.detail-item a:hover {
    color: var(--terracotta);
}

.location-map {
    position: relative;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(42, 34, 32, 0.1);
    position: relative;
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--terracotta);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.2;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 7rem 0;
    background: var(--sand-light);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sand-dark), var(--terracotta-light), var(--terracotta));
}

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

.contact-text {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.contact-method:hover {
    border-color: var(--sand);
    box-shadow: 0 8px 25px rgba(42, 34, 32, 0.06);
    transform: translateX(5px);
}

.method-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method strong {
    display: block;
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 0.15rem;
}

.contact-method span,
.contact-method a {
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

.contact-method a:hover {
    color: var(--terracotta);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(42, 34, 32, 0.06);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--sand);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--cream);
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(192, 90, 58, 0.1);
}

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

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

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
}

.form-success {
    display: none;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    padding: 1rem;
    background: #E8F5E9;
    border-radius: 12px;
    color: #2E7D32;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-success svg {
    color: #4CAF50;
    flex-shrink: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--charcoal);
    padding: 4rem 0 0;
    color: var(--white);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

.footer-logo .logo-icon {
    color: var(--terracotta-light);
}

.footer-logo .logo-text span {
    color: var(--terracotta-light);
    font-weight: 500;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links strong {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-contact strong {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--terracotta-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

    .hero-img-main img {
        height: 550px;
    }

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(42, 34, 32, 0.15);
        z-index: 999;
    }

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

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

    .mobile-overlay.active {
        display: block;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

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

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

    .hero-img-main img {
        height: 450px;
    }

    .hero-img-accent {
        left: -20px;
        bottom: -20px;
    }

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

    .about-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

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

    .hero {
        padding-top: 70px;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

    .hero-floating-card {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 1rem;
        display: inline-flex;
    }

    .hero-image-wrapper {
        text-align: center;
    }

    .hero-img-accent {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 1rem;
    }

    .btn {
        padding: 0.8rem 1.4rem;
        font-size: 0.88rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}
