/* Elyse landing CSS extracted from html/elyse.html */
:root {
    --bg-ivory: #F9F6F2;
    --bg-cream: #FFFDF5;
    --text-main: #333333;
    --text-light: #666666;
    --dark-charcoal: #1A1A1A;
    --footer-bg: #0f0f0f;
    --accent-gold: #C5A059;
    --accent-gold-hover: #D4B26A;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --space-xs: 1rem;
    --space-sm: 2rem;
    --space-md: 4rem;
    --space-lg: 8rem;
    --space-xl: 12rem;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hidden {
    display: none !important;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-ivory);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--dark-charcoal);
}

p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), #E8D099);
    color: var(--dark-charcoal);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.btn-gold:hover {
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--bg-ivory);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 253, 245, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    z-index: 1001;
    position: relative;
}

.navbar.scrolled .logo {
    color: var(--dark-charcoal);
}

.logo span {
    color: var(--accent-gold);
}

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

.nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
}

.nav-links a {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 5px;
}

.navbar.scrolled .nav-links a {
    color: var(--dark-charcoal);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

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

.navbar .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    padding: 0.8rem 1.8rem;
    font-size: 0.85rem;
}

.navbar.scrolled .btn-outline {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.navbar .btn-outline:hover {
    background: var(--accent-gold);
    color: #fff;
    border-color: var(--accent-gold);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 20px;
    position: relative;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    transition: .25s ease-in-out;
}

.navbar.scrolled .menu-toggle span {
    background: var(--dark-charcoal);
}

.menu-toggle.active span {
    background: #fff !important;
}

.menu-toggle span:nth-child(1) {
    top: 0px;
}

.menu-toggle span:nth-child(2) {
    top: 9px;
}

.menu-toggle span:nth-child(3) {
    top: 18px;
}

.menu-toggle.active span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-toggle.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--elyse-hero-bg) no-repeat center/cover;
    z-index: -2;
    transform: scale(1.05);
    animation: kenburns 20s ease-out infinite alternate;
}

@keyframes kenburns {
    100% {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    z-index: 1;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title {
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    font-size: 1.25rem;
    color: #E0E0E0;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-inline: auto;
}

.overview {
    padding: var(--space-xl) 0;
    background: var(--bg-cream);
}

.overview-grid {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.overview-img-wrapper {
    flex: 1;
    position: relative;
}

.overview-img-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-gold);
    z-index: 0;
}

.overview-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.overview-content {
    flex: 1;
}

.section-tag {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.overview-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.overview-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.usps {
    padding: var(--space-xl) 0;
    background: var(--bg-ivory);
    overflow: hidden;
}

.usps .section-header {
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    text-align: center;
}

.usps .section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.usp-showcase {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.usp-row {
    display: flex;
    align-items: center;
    gap: 0;
}

.usp-row.reverse {
    flex-direction: row-reverse;
}

.usp-image {
    flex: 1.2;
    position: relative;
}

.usp-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(197, 160, 89, 0.4);
    z-index: 0;
    transition: var(--transition);
}

.usp-row.reverse .usp-image::before {
    left: auto;
    right: -30px;
}

.usp-img-inner {
    position: relative;
    z-index: 1;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.usp-img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.usp-row:hover .usp-img-inner img {
    transform: scale(1.05);
}

.usp-content {
    flex: 1;
    background: #fff;
    padding: 5rem 4rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    margin-left: -120px;
}

.usp-row.reverse .usp-content {
    margin-left: 0;
    margin-right: -120px;
}

.usp-number {
    font-family: var(--font-serif);
    font-size: 8rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(197, 160, 89, 0.3);
    line-height: 1;
    position: absolute;
    top: -40px;
    left: 30px;
    z-index: -1;
    user-select: none;
}

.usp-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-charcoal);
}

.usp-content h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
    margin-top: 1rem;
}

.usp-content p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
}

.usp-link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.usp-link span {
    transition: transform 0.3s ease;
}

.usp-link:hover span {
    transform: translateX(10px);
}

.collection {
    padding: var(--space-xl) 0;
    background: var(--bg-cream);
}

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

.collection h2 {
    font-size: 3.5rem;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.tab-btn {
    background: transparent;
    border: none;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding-bottom: 10px;
    position: relative;
    transition: color 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--dark-charcoal);
}

.tab-btn.active {
    font-weight: 600;
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.collection-split {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.col-image {
    flex: 1.5;
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.col-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

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

.col-info {
    flex: 1;
    padding: 3rem;
    background: #fff;
    border-left: 3px solid var(--accent-gold);
}

.col-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.col-specs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.col-specs div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--dark-charcoal);
}

.col-specs svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-gold);
}

.location {
    padding: var(--space-xl) 0;
    background: var(--dark-charcoal);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.location-grid {
    display: flex;
    align-items: center;
    gap: 6rem;
    position: relative;
    z-index: 2;
}

.location-content {
    flex: 1;
}

.location-content h2 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.location-content p {
    color: #A0A0A0;
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

.loc-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-left: 1px solid rgba(197, 160, 89, 0.3);
    padding-left: 2rem;
    position: relative;
}

.loc-item {
    position: relative;
}

.loc-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
}

.loc-time {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.loc-dest {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.location-map {
    flex: 1.2;
    position: relative;
}

.location-map img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    filter: grayscale(40%) contrast(120%);
}

.investment {
    padding: var(--space-xl) 0;
    background: var(--bg-ivory);
    color: var(--dark-charcoal);
}

.investment h2,
.investment h3 {
    color: var(--dark-charcoal);
}

.investment-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.investment-content {
    flex: 1;
}

.investment-content p {
    color: var(--text-light);
}

.reason-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reason-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.reason-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 160, 89, 0.5);
    border-radius: 50%;
    color: var(--accent-gold);
}

.reason-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.reason-text h4 {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-charcoal);
}

.reason-text p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-light);
}

.investment-img {
    flex: 1;
}

.investment-img img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.gallery {
    padding: var(--space-xl) 0;
    background: #fff;
}

.gallery-header {
    text-align: center;
    margin-bottom: var(--space-md);
}

.gallery-header h2 {
    font-size: 3.5rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
    margin-bottom: 6rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    background: var(--dark-charcoal);
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
    z-index: 3;
    transition: var(--transition);
}

.video-wrapper:hover::before {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-color: rgba(197, 160, 89, 0.8);
}

.yt-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.yt-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
}

.mute-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.mute-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: scale(1.1);
}

.mute-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
}

.album-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.album-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.album-item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
}

.album-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 2;
}

.album-item:nth-child(7) {
    grid-column: span 2;
    grid-row: span 1;
}

.album-item:nth-child(8) {
    grid-column: span 3;
    grid-row: span 1;
}

.album-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.album-more-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgb(15 15 15 / 8%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1;
    backdrop-filter: blur(3px);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.album-overlay span {
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 0.8rem 2rem;
    border-radius: 2px;
    backdrop-filter: blur(4px);
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

.album-item:hover .album-overlay span {
    transform: translateY(0);
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.98);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--accent-gold);
}

.lightbox-counter {
    position: absolute;
    top: 40px;
    left: 40px;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    letter-spacing: 3px;
    z-index: 10;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1400px;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lightbox-img.show {
    opacity: 1;
}

.lightbox-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-progress-bar {
    height: 100%;
    width: 0;
    background: var(--accent-gold);
}

.about {
    padding: var(--space-xl) 0;
    background: #fff;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-content {
    flex: 1;
    padding-right: 2rem;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.about-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-gold);
    z-index: 0;
}

.advisor-profile {
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
}

.advisor-profile img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.advisor-info h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--dark-charcoal);
}

.advisor-info p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--accent-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section {
    padding: var(--space-xl) 0;
    background: var(--bg-cream);
}

.vip-booking-card {
    display: flex;
    background: var(--dark-charcoal);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.vip-booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gold);
}

.vip-info {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vip-info h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.vip-info p {
    color: #A0A0A0;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.vip-form-wrapper {
    flex: 1;
    padding: 5rem;
    background: #151515;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 460px;
}

.luxury-form .form-group {
    margin-bottom: 2rem;
}

.luxury-form .form-control {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #fff;
    transition: var(--transition);
}

.luxury-form .form-control:focus {
    outline: none;
    border-bottom-color: var(--accent-gold);
}

.luxury-form .form-control::placeholder {
    color: #666;
    font-weight: 300;
}

.elyse-vip-state {
    position: absolute;
    inset: 0;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 360ms ease, transform 360ms ease, visibility 0s linear 360ms;
}

.elyse-vip-state.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 360ms ease, transform 360ms ease, visibility 0s;
}

.elyse-vip-state .luxury-form {
    width: 100%;
}

.elyse-vip-success {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
}

.elyse-vip-success__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 0 0 8px rgba(197, 160, 89, 0.12);
}

.elyse-vip-success h3 {
    color: #fff;
    font-size: 2rem;
    margin: 0;
}

.elyse-vip-success p {
    color: #b4b4b4;
    font-size: 1rem;
    margin: 0;
    max-width: 420px;
}

.footer {
    background: var(--footer-bg);
    color: #A0A0A0;
    padding: 6rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.5), transparent);
}

.footer-top {
    text-align: center;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--accent-gold);
}

.footer-slogan {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    max-width: 600px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-heading {
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 1px;
    background: var(--accent-gold);
}

.footer-desc {
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.footer-contact .icon {
    color: var(--accent-gold);
    font-size: 1.2rem;
    line-height: 1.4;
}

.footer-contact p {
    margin: 0;
    line-height: 1.6;
}

.footer-quick-links {
    list-style: none;
    padding: 0;
}

.footer-quick-links li {
    margin-bottom: 1.2rem;
}

.footer-quick-links a {
    color: #A0A0A0;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-quick-links a::before {
    content: '→';
    margin-right: 8px;
    color: var(--accent-gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.footer-quick-links a:hover {
    color: #fff;
}

.footer-quick-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.footer-legal a {
    color: #A0A0A0;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-legal .divider {
    margin: 0 0.8rem;
    opacity: 0.2;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

@media (max-width: 1024px) {
    .nav-menu-wrapper {
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {

    .overview-grid,
    .investment-grid,
    .collection-split,
    .location-grid {
        flex-direction: column;
        gap: 4rem;
    }

    .overview-img-wrapper::before {
        display: none;
    }

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

    .usp-showcase {
        gap: 4rem;
    }

    .usp-row,
    .usp-row.reverse {
        flex-direction: column;
        gap: 0;
    }

    .usp-image::before {
        display: none;
    }

    .usp-content {
        margin: -50px 2rem 0 !important;
        padding: 3rem 2rem;
    }

    .col-info {
        border-left: none;
        border-top: 3px solid var(--accent-gold);
        padding: 2rem 0 0 0;
        background: transparent;
    }

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

    .album-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .album-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .album-item:nth-child(4) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .album-item:nth-child(7) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 4rem;
    }

    .about-image {
        order: -1;
        width: 100%;
    }

    .about-image::after {
        display: none;
    }

    .about-content {
        padding-right: 0;
    }

    .vip-booking-card {
        flex-direction: column;
    }

    .vip-info,
    .vip-form-wrapper {
        padding: 3rem;
        min-height: 380px;
    }

    .elyse-vip-state {
        padding: 3rem;
    }

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

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

    .menu-toggle {
        display: block;
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        z-index: 1000;
    }

    .nav-menu-wrapper.active {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-links a {
        color: #fff !important;
        font-size: 1.2rem;
    }

    .navbar .btn-outline {
        margin-top: 2rem;
    }

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

    .overview-img,
    .investment-img img,
    .location-map img {
        height: 400px;
    }

    .usps .section-header h2,
    .collection h2,
    .location-content h2,
    .gallery-header h2 {
        font-size: 2.5rem;
    }

    .usp-content {
        margin: -30px 1rem 0 !important;
        padding: 2rem 1.5rem;
    }

    .usp-number {
        font-size: 5rem;
        top: -20px;
        left: 10px;
    }

    .usp-content h3 {
        font-size: 1.8rem;
    }

    .tabs-nav {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .loc-time {
        font-size: 2rem;
    }

    .about-content h2,
    .vip-info h2 {
        font-size: 2.5rem;
    }

    .album-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .album-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .album-more-badge {
        top: 10px;
        right: 10px;
        font-size: 0.72rem;
        padding: 0.4rem 0.72rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .social-links {
        justify-content: center;
    }

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

@media (max-width: 600px) {
    .footer {
        padding: 6rem 0 100px;
    }
}