:root {
    --bg-primary: #F9F6F0; /* Alabaster Beige */
    --text-primary: #0A0A0A; /* Obsidian Black */
    --accent-gold: #C5A059; /* Metallic Gold */
    --accent-dark: #1A1A1A;
    --glass-light: rgba(249, 246, 240, 0.6);
    --glass-border: rgba(10, 10, 10, 0.1);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    position: relative;
}

/* Fallback cursor for links */
a, button {
    cursor: pointer;
}

/* --- Navigation --- */
.luxury-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    z-index: 1000;
    transition: all 0.5s ease;
}

.luxury-nav.scrolled {
    padding: 15px 50px;
    background: var(--glass-light);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

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

.brand {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 2px;
}

.brand span {
    color: var(--accent-gold);
    font-weight: 400;
}

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

.nav-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--text-primary);
    transition: width 0.3s ease;
}

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

.btn-luxury {
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 14px 32px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.4s ease;
    border: 1px solid var(--text-primary);
}

.btn-luxury:hover {
    background: transparent;
    color: var(--text-primary);
}

.menu-trigger {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
}

/* --- Immersive Hero --- */
.hero-immersive {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px; /* Offset for luxury navbar */
    box-sizing: border-box;
}

.hero-text-bg {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 1;
}

.hero-text-bg h1 {
    font-family: var(--font-heading);
    font-size: 15vw;
    line-height: 0.8;
    color: var(--text-primary);
    opacity: 0.12;
    white-space: nowrap;
    letter-spacing: -0.05em;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    width: 40vw;
    max-width: 700px;
    height: 48vh; /* Reduced height from 60vh to prevent overlaps */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 30px; /* Space between image and subtitle */
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); /* For parallax */
    transition: transform 0.1s linear;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    max-width: 450px;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: bounce 2s infinite ease-in-out;
}

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

/* --- Vision Section --- */
.vision-section {
    padding: 150px 50px;
    background: var(--bg-primary);
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.vision-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(10, 10, 10, 0.7);
    margin-bottom: 40px;
}

.luxury-list {
    list-style: none;
}

.luxury-list li {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: 1px;
}

.luxury-list i {
    color: var(--accent-gold);
}

.vision-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-gold);
    opacity: 0.15;
    top: 10%;
    right: 10%;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #D9C5A8;
    opacity: 0.2;
    bottom: 0;
    left: 0;
}

.glass-card {
    position: relative;
    z-index: 2;
    background: var(--glass-light);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 60px;
    border-radius: 2px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    max-width: 400px;
}

.luxury-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-gold);
    margin-bottom: 30px;
}

.glass-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 15px;
}

.glass-card p {
    color: rgba(10, 10, 10, 0.7);
    line-height: 1.6;
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* --- Journey Section (How It Works) --- */
.journey-section {
    padding: 120px 50px;
    background: #0D0D0D; /* Sleek luxury dark background */
    color: #F9F6F0;
    position: relative;
    z-index: 10;
    text-align: center;
}

.journey-title-block {
    margin-bottom: 70px;
}

.journey-title-block h2 {
    color: #F9F6F0;
    font-size: 42px;
}

.journey-title-block h2 span.gold-text {
    color: var(--accent-gold);
    font-weight: 400;
}

.journey-title-block p {
    color: rgba(249, 246, 240, 0.6);
    font-size: 16px;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.journey-card {
    background: #141414; /* Darker card background like reference */
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.journey-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--accent-gold);
    background: rgba(197, 160, 89, 0.03);
    transition: all 0.4s ease;
}

.journey-card:hover .card-icon-circle {
    background: var(--accent-gold);
    color: #0D0D0D;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

.card-icon-circle i {
    width: 28px;
    height: 28px;
}

.journey-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    color: #F9F6F0;
}

.journey-card p {
    color: rgba(249, 246, 240, 0.6);
    font-size: 15px;
    line-height: 1.6;
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 100px 50px;
    background: #EAE6DF;
    position: relative;
    z-index: 10;
}

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

.section-header p {
    color: rgba(10, 10, 10, 0.7);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.experience-card {
    text-decoration: none;
    color: var(--text-primary);
    display: block;
    group;
}

.card-image-wrapper {
    background: #D9C5A8;
    aspect-ratio: 1;
    border-radius: 4px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.experience-card:hover .card-image-wrapper {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-card:hover .card-overlay {
    opacity: 1;
}

.experience-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 5px;
}

.experience-card p {
    font-size: 14px;
    color: rgba(10, 10, 10, 0.6);
}

/* --- Contact Section --- */
.contact-section {
    padding: 150px 50px;
    background: var(--bg-primary);
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.contact-desc {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(10, 10, 10, 0.7);
    margin-bottom: 50px;
    max-width: 500px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    font-size: 16px;
    color: var(--text-primary);
}

.contact-item i {
    color: var(--accent-gold);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-form-wrapper {
    background: #EAE6DF;
    padding: 60px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: opacity 0.4s ease;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(10, 10, 10, 0.2);
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 16px;
    color: rgba(10, 10, 10, 0.5);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group input:not(:placeholder-shown) {
    border-bottom-color: var(--accent-gold);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: -20px;
    font-size: 12px;
    color: var(--accent-gold);
}

.submit-btn {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.form-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #EAE6DF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
    z-index: 10;
}

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

.success-icon {
    width: 64px;
    height: 64px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 15px;
}

.form-success p {
    color: rgba(10, 10, 10, 0.7);
    line-height: 1.6;
}

/* --- Footer --- */
.luxury-footer {
    background: #0D0D0D;
    color: #F9F6F0;
    padding: 80px 50px 30px 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto 50px auto;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(249, 246, 240, 0.6);
    margin-top: 15px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-brand .brand {
    color: #F9F6F0;
}

.luxury-footer h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--accent-gold);
}

.footer-links, .footer-legal, .footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a, .footer-legal a {
    color: rgba(249, 246, 240, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--accent-gold);
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: rgba(249, 246, 240, 0.6);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.social-icons i {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(249, 246, 240, 0.4);
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .vision-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-image-wrapper { width: 70vw; }
    .experience-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { gap: 50px; }
    .journey-grid { gap: 30px; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .menu-trigger { display: block; }
    .hero-text-bg h1 { font-size: 20vw; }
    .hero-image-wrapper { width: 85vw; height: 50vh; }
    .section-title { font-size: 42px; }
    .luxury-nav { padding: 20px; }
    .experience-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-section { padding: 100px 30px; }
    .journey-grid { grid-template-columns: 1fr; }
    .journey-section { padding: 100px 30px; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-brand p { margin: 15px auto 0 auto; }
    .social-icons { justify-content: center; }
}
