/* ============================================
   Bahler Glamping — Custom Styles
   Color Palette: Plum (#7c3aed) + Amber (#d97706)
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --plum-50: #faf5ff;
    --plum-100: #f3e8ff;
    --plum-200: #e9d5ff;
    --plum-300: #d8b4fe;
    --plum-400: #c084fc;
    --plum-500: #a855f7;
    --plum-600: #9333ea;
    --plum-700: #7c3aed;
    --plum-800: #6b21a8;
    --plum-900: #581c87;

    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;

    --cream-50: #fefdf8;
    --cream-100: #fefce8;
    --cream-200: #fef9c3;
    --sand-100: #faf5ef;
    --sand-200: #f5ede0;

    --text-primary: #1c1029;
    --text-secondary: #4a3f5c;
    --text-muted: #7c7090;
    --text-light: #a89bbd;

    --white: #ffffff;
    --white-soft: rgba(255, 255, 255, 0.85);
    --white-glass: rgba(255, 255, 255, 0.12);

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

    --shadow-sm: 0 1px 3px rgba(28, 16, 41, 0.06);
    --shadow-md: 0 4px 20px rgba(28, 16, 41, 0.08);
    --shadow-lg: 0 12px 40px rgba(28, 16, 41, 0.12);
    --shadow-xl: 0 24px 60px rgba(28, 16, 41, 0.16);
    --shadow-plum: 0 8px 30px rgba(124, 58, 237, 0.25);
    --shadow-amber: 0 8px 30px rgba(217, 119, 6, 0.25);

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

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s 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%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--cream-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

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

/* --- Page Loader --- */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--plum-700) 0%, var(--plum-900) 50%, #1c1029 100%);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    margin: 0 auto 16px;
    animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.loader-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--plum-200);
    letter-spacing: 0.05em;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-base);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(124, 58, 237, 0.08);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition-fast);
}

.nav.scrolled .nav-logo {
    color: var(--text-primary);
}

.nav-logo-icon {
    flex-shrink: 0;
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white-soft);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.nav.scrolled .nav-link {
    color: var(--text-secondary);
}

.nav-link:hover {
    color: var(--white);
    background: var(--white-glass);
}

.nav.scrolled .nav-link:hover {
    color: var(--plum-700);
    background: var(--plum-50);
}

.nav-link--cta {
    background: linear-gradient(135deg, var(--plum-600), var(--plum-700));
    color: var(--white) !important;
    font-weight: 600;
    margin-left: 8px;
}

.nav-link--cta:hover {
    background: linear-gradient(135deg, var(--plum-500), var(--plum-600)) !important;
    box-shadow: var(--shadow-plum);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-base);
    transform-origin: center;
}

.nav.scrolled .nav-toggle-bar {
    background: var(--text-primary);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--plum-600), var(--plum-700));
    color: var(--white);
    box-shadow: var(--shadow-plum);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--plum-500), var(--plum-600));
    box-shadow: 0 12px 35px rgba(124, 58, 237, 0.35);
    transform: translateY(-2px);
}

.btn--ghost {
    background: var(--white-glass);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn--ghost:hover {
    background: var(--white);
    color: var(--plum-700);
    border-color: var(--white);
}

.btn--light {
    background: var(--white);
    color: var(--plum-700);
    box-shadow: var(--shadow-md);
}

.btn--light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn--ghost-light:hover {
    background: var(--white);
    color: var(--plum-700);
    border-color: var(--white);
}

.btn--outline {
    background: transparent;
    color: var(--plum-700);
    border: 1.5px solid var(--plum-200);
}

.btn--outline:hover {
    background: var(--plum-50);
    border-color: var(--plum-400);
}

.btn--full {
    width: 100%;
}

/* --- Section Shared --- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--plum-600);
    background: var(--plum-50);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 56px;
}

.section-header--center {
    text-align: center;
}

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

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(28, 16, 41, 0.75) 0%,
        rgba(107, 33, 168, 0.55) 50%,
        rgba(28, 16, 41, 0.65) 100%
    );
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 60%,
        rgba(254, 253, 248, 1) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 160px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--amber-300);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    max-width: 800px;
}

.hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--amber-300), var(--amber-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--white-soft);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 36px;
}

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

.hero-cards {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: -80px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition-base);
    border: 1px solid rgba(124, 58, 237, 0.06);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.stat-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--plum-50), var(--plum-100));
    border-radius: var(--radius-md);
    color: var(--plum-700);
}

.stat-card-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-card-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-light);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* --- About --- */
.about {
    padding: 120px 0;
    background: var(--cream-50);
}

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

.about-images {
    position: relative;
}

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

.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img-main:hover img {
    transform: scale(1.03);
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream-50);
}

.about-img-secondary img {
    width: 260px;
    height: 200px;
    object-fit: cover;
}

.about-pattern {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--plum-300) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.4;
    z-index: -1;
}

.about-content {
    padding: 20px 0;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.about-feature svg {
    color: var(--plum-600);
    flex-shrink: 0;
}

/* --- Stays --- */
.stays {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream-50) 0%, var(--sand-100) 100%);
}

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

.stay-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid rgba(124, 58, 237, 0.06);
}

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

.stay-card-img {
    position: relative;
    overflow: hidden;
}

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

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

.stay-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--plum-600), var(--plum-700));
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 0.04em;
}

.stay-card-body {
    padding: 24px;
}

.stay-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.stay-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.stay-card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.stay-card-amenities li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--sand-100);
    padding: 5px 10px;
    border-radius: var(--radius-full);
}

.stay-card-amenities svg {
    color: var(--plum-500);
}

/* --- Experiences --- */
.experiences {
    padding: 120px 0;
    background: var(--white);
}

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

.exp-card {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--cream-50);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.exp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--plum-100);
}

.exp-card-img {
    overflow: hidden;
}

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

.exp-card:hover .exp-card-img img {
    transform: scale(1.04);
}

.exp-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.exp-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--plum-600), var(--plum-700));
    border-radius: var(--radius-md);
    color: var(--white);
}

.exp-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.exp-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- Gallery --- */
.gallery {
    padding: 120px 0;
    background: var(--cream-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

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

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

.gallery-item--large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

.gallery-item--large img {
    height: 380px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) img {
    height: 180px;
}

.gallery-item--wide {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
}

.gallery-item--wide img {
    height: 280px;
}

/* --- Testimonials --- */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--plum-900) 0%, #1c1029 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--plum-300);
}

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

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.testimonial-card-quote {
    color: var(--amber-400);
    margin-bottom: 16px;
    opacity: 0.7;
}

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

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

.testimonial-card-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--plum-500), var(--amber-500));
    border-radius: var(--radius-full);
    color: var(--white);
}

.testimonial-card-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}

.testimonial-card-location {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* --- CTA --- */
.cta {
    padding: 120px 0;
    background: var(--cream-50);
}

.cta-inner {
    position: relative;
    background: linear-gradient(135deg, var(--plum-700) 0%, var(--plum-900) 60%, #1c1029 100%);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    overflow: hidden;
    text-align: center;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.12) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-content .section-tag {
    background: rgba(255, 255, 255, 0.12);
    color: var(--amber-300);
}

.cta-content .section-title {
    color: var(--white);
    max-width: 600px;
    margin: 0 auto 16px;
}

.cta-text {
    font-size: 1.05rem;
    color: var(--white-soft);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* --- Contact --- */
.contact {
    padding: 120px 0;
    background: var(--white);
}

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

.contact-info {
    padding: 20px 0;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--plum-50), var(--plum-100));
    border-radius: var(--radius-md);
    color: var(--plum-700);
    flex-shrink: 0;
}

.contact-detail-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.contact-detail-value a {
    color: var(--plum-700);
    transition: var(--transition-fast);
}

.contact-detail-value a:hover {
    color: var(--plum-500);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-form-wrap {
    background: var(--cream-50);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(124, 58, 237, 0.06);
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--white);
    border: 1.5px solid var(--sand-200);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--plum-400);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

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

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

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

.form-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--plum-100), var(--plum-200));
    border-radius: var(--radius-full);
    color: var(--plum-700);
}

.form-success-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.form-success-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-form.hidden {
    display: none;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}

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

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--white-soft);
    transition: var(--transition-fast);
}

.footer-social-link:hover {
    background: var(--plum-600);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--plum-400);
    padding-left: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}

.footer-contact-list svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--plum-400);
}

.footer-contact-list a {
    color: var(--text-light);
    transition: var(--transition-fast);
}

.footer-contact-list a:hover {
    color: var(--plum-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--plum-400);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--plum-600), var(--plum-700));
    color: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-plum);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition-base);
}

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

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(124, 58, 237, 0.4);
}

/* --- Animations --- */
[data-aos] {
    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);
}

[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-cards {
        grid-template-columns: repeat(3, 1fr);
        margin-top: -60px;
    }

    .about-grid {
        gap: 48px;
    }

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

    .stays-grid .stay-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

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

    .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

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

@media (max-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 32px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transform: translateX(100%);
        transition: var(--transition-base);
        z-index: 1000;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-link {
        color: var(--text-secondary) !important;
        padding: 12px 16px;
        border-radius: var(--radius-md);
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--plum-50) !important;
        color: var(--plum-700) !important;
    }

    .nav-link--cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
        background: linear-gradient(135deg, var(--plum-600), var(--plum-700)) !important;
        color: var(--white) !important;
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(28, 16, 41, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .hero-content {
        padding: 100px 24px 140px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-cards {
        grid-template-columns: 1fr;
        margin-top: -40px;
    }

    .stat-card {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

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

    .about-img-secondary {
        right: 16px;
        bottom: -24px;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .stays-grid .stay-card:last-child {
        max-width: 100%;
    }

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

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

    .gallery-item--large {
        grid-column: 1 / -1;
    }

    .gallery-item--large img {
        height: 260px;
    }

    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) img {
        height: 160px;
    }

    .gallery-item--wide {
        grid-column: 1 / -1;
    }

    .gallery-item--wide img {
        height: 200px;
    }

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

    .testimonial-card:last-child {
        max-width: 100%;
    }

    .cta-inner {
        padding: 60px 32px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

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

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

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

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

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

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

    .hero-content {
        padding: 90px 16px 120px;
    }

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

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

    .about, .stays, .experiences, .gallery, .testimonials, .cta, .contact {
        padding: 80px 0;
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}
