/* ===== CSS Custom Properties ===== */
:root {
    --plum-deep: #5B1A6E;
    --plum: #7B2D8E;
    --plum-light: #9B4DBA;
    --plum-pale: #E8D5F0;
    --plum-bg: #F5EEFA;
    
    --amber-deep: #A0620A;
    --amber: #D4880A;
    --amber-light: #E8A832;
    --amber-pale: #FDF0D5;
    --amber-bg: #FFFAF0;
    
    --white: #FFFFFF;
    --off-white: #FEFCF8;
    --cream: #FDF8F0;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EIEIEI;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    --font-display: '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(91, 26, 110, 0.08);
    --shadow-md: 0 4px 20px rgba(91, 26, 110, 0.1);
    --shadow-lg: 0 8px 40px rgba(91, 26, 110, 0.12);
    --shadow-xl: 0 16px 60px rgba(91, 26, 110, 0.15);
    
    --transition: 0.3s 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;
    font-size: 16px;
}

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

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

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

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

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

/* ===== Typography ===== */
.text-gradient {
    background: linear-gradient(135deg, var(--plum) 0%, var(--amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--plum), var(--amber));
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 560px;
}

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

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(123, 45, 142, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(123, 45, 142, 0.45);
}

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

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

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

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

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

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
}

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

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(91, 26, 110, 0.08);
    padding: 12px 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-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    transition: var(--transition);
}

.nav.scrolled .nav-logo {
    color: var(--gray-900);
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--plum), var(--amber));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.nav.scrolled .nav-logo-icon {
    box-shadow: var(--shadow-sm);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--plum), var(--amber));
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-links a:hover {
    color: var(--white);
}

.nav.scrolled .nav-links a {
    color: var(--gray-600);
}

.nav.scrolled .nav-links a:hover {
    color: var(--gray-900);
}

.nav-cta {
    background: linear-gradient(135deg, var(--amber), var(--amber-light)) !important;
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-xl);
    font-weight: 600 !important;
    box-shadow: 0 2px 12px rgba(212, 136, 10, 0.3);
}

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

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212, 136, 10, 0.4) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav.scrolled .nav-toggle span {
    background: var(--gray-800);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 50%, var(--amber-deep) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-slow);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--white);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    padding: 12px 24px;
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--amber-light);
}

.mobile-cta-link {
    font-family: var(--font-body);
    font-size: 1rem;
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    margin-top: 16px;
    font-weight: 600;
}

.mobile-divider {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 8px 0;
}

.mobile-contact {
    margin-top: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
}

.mobile-contact a {
    color: var(--amber-light);
    font-weight: 600;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3D0F4A 0%, var(--plum) 35%, #8B5E3C 70%, var(--amber) 100%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(91, 26, 110, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212, 136, 10, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(155, 77, 186, 0.2) 0%, transparent 70%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 136, 10, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(155, 77, 186, 0.2) 0%, transparent 70%);
    bottom: 10%;
    left: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    top: 25%;
    right: 15%;
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
    animation: spin 20s linear infinite;
}

.hero-shape-4 {
    width: 80px;
    height: 80px;
    background: rgba(212, 136, 10, 0.2);
    border: 1px solid rgba(212, 136, 10, 0.3);
    bottom: 30%;
    right: 25%;
    border-radius: var(--radius-md);
    transform: rotate(30deg);
    animation: spin 15s linear infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--amber-light);
    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-display);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--amber-light);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

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

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

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

/* ===== Section Base ===== */
.section {
    padding: 100px 0;
}

/* ===== Stay Section ===== */
.stay {
    background: var(--off-white);
}

.stay-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 64px;
}

.stay-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.stay-card--large {
    grid-row: span 2;
}

.stay-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.stay-card--large .stay-card-image {
    aspect-ratio: auto;
    flex: 1;
}

.stay-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.stay-card-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--plum);
}

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

.stay-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.stay-card-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Amenities Strip */
.amenities-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 16px;
    background: var(--white);
    text-align: center;
    transition: var(--transition);
}

.amenity-item:hover {
    background: var(--plum-bg);
}

.amenity-item svg {
    color: var(--plum);
    transition: var(--transition);
}

.amenity-item:hover svg {
    color: var(--amber);
    transform: scale(1.1);
}

.amenity-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* ===== Experience Section ===== */
.experience {
    background: var(--cream);
    overflow: hidden;
}

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

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

.experience-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.exp-item-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.exp-item-text span {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.experience-visual {
    position: relative;
    height: 100%;
    min-height: 600px;
}

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

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

.visual-block--1 {
    width: 280px;
    height: 360px;
    top: 0;
    right: 0;
    z-index: 2;
}

.visual-block--2 {
    width: 260px;
    height: 180px;
    bottom: 120px;
    right: 40px;
    z-index: 3;
}

.visual-block--3 {
    width: 220px;
    height: 200px;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(135deg, var(--plum), var(--amber));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.visual-quote {
    color: var(--white);
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--amber-light);
    display: block;
    margin-bottom: 8px;
}

.visual-quote p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

/* ===== Location Section ===== */
.location {
    background: var(--off-white);
}

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

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

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

.location-detail svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--plum);
    margin-top: 2px;
}

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

.location-detail span,
.location-detail a {
    font-size: 1rem;
    color: var(--gray-800);
    line-height: 1.6;
}

.location-detail a:hover {
    color: var(--plum);
}

.location-map {
    margin-top: 32px;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--plum-bg) 0%, var(--amber-pale) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    border: 2px dashed var(--plum-pale);
}

.map-pin-icon {
    color: var(--plum);
    margin: 0 auto 16px;
    animation: bounce 2s ease-in-out infinite;
}

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

.map-placeholder p {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 20px;
    line-height: 1.6;
}

.location-visual {
    position: relative;
}

.map-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.map-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(91, 26, 110, 0.3) 0%, transparent 50%);
}

.map-dot {
    position: absolute;
    top: 45%;
    left: 55%;
    width: 20px;
    height: 20px;
    background: var(--amber);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(212, 136, 10, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

/* ===== Gallery Section ===== */
.gallery {
    background: var(--gray-900);
    padding: 100px 0;
}

.gallery .section-tag {
    color: var(--amber-light);
}

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

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(91, 26, 110, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

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

.gallery-item--2 {
    grid-column: 5 / 9;
    grid-row: 1 / 2;
}

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

.gallery-item--4 {
    grid-column: 5 / 9;
    grid-row: 2 / 3;
}

.gallery-item--5 {
    grid-column: 9 / 13;
    grid-row: 2 / 3;
}

/* ===== CTA Section ===== */
.cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 50%, var(--amber-deep) 100%);
}

.cta-bg {
    position: absolute;
    inset: 0;
}

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

.cta-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 136, 10, 0.15) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(155, 77, 186, 0.2) 0%, transparent 70%);
    bottom: -80px;
    right: 10%;
}

.cta-shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    top: 20%;
    right: 5%;
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
}

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

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

.cta-text .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.cta-text .section-tag {
    color: var(--amber-light);
}

/* Form */
.cta-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

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

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    transition: var(--transition);
    background: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--plum);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(123, 45, 142, 0.1);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    gap: 16px;
}

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

.success-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--plum), var(--amber));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 8px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gray-900);
}

.form-success p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.success-note {
    font-size: 0.85rem !important;
    color: var(--gray-500) !important;
}

.success-note a {
    color: var(--plum);
    font-weight: 600;
}

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

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

.footer-brand {
    max-width: 360px;
}

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

.footer-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--plum), var(--amber));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber-light);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-col span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

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

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

.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) {
    .stay-grid {
        grid-template-columns: 1fr;
    }
    
    .stay-card--large {
        grid-row: span 1;
    }
    
    .stay-card--large .stay-card-image {
        aspect-ratio: 16/9;
    }
    
    .amenities-strip {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .experience-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .experience-visual {
        min-height: 400px;
        position: relative;
    }
    
    .visual-block--1 {
        width: 240px;
        height: 300px;
    }
    
    .visual-block--2 {
        width: 200px;
        height: 150px;
        right: 20px;
    }
    
    .visual-block--3 {
        width: 180px;
        height: 160px;
    }
    
    .location-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item--1 {
        grid-column: 1 / 3;
        grid-row: span 2;
        min-height: 400px;
    }
    
    .gallery-item--2,
    .gallery-item--3,
    .gallery-item--4,
    .gallery-item--5 {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .section {
        padding: 72px 0;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .amenities-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-form-wrapper {
        padding: 28px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--1 {
        grid-column: 1;
        grid-row: span 1;
        min-height: 300px;
    }
    
    .gallery-item--2,
    .gallery-item--3,
    .gallery-item--4,
    .gallery-item--5 {
        grid-column: 1;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .amenities-strip {
        grid-template-columns: 1fr;
    }
    
    .experience-visual {
        min-height: 300px;
    }
    
    .visual-block--1 {
        width: 180px;
        height: 240px;
    }
    
    .visual-block--2 {
        width: 160px;
        height: 120px;
    }
    
    .visual-block--3 {
        width: 150px;
        height: 140px;
    }
}
