:root {
    /* Editorial Palette */
    --v-bg: #FAF8F5; /* Warm cream */
    --v-text: #2A2A2A; /* Soft black */
    --v-accent: #8E7C6B; /* Muted taupe/blush */
    --v-border: #E8E5DF;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Jost', sans-serif;
}

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

body { background-color: var(--v-bg); color: var(--v-text); font-family: var(--font-sans); overflow-x: hidden; }

/* Custom Editorial Cursor */
.v-cursor {
    position: fixed; width: 12px; height: 12px; background: var(--v-text); border-radius: 50%;
    pointer-events: none; z-index: 10000; transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s, background 0.3s;
    display: flex; justify-content: center; align-items: center;
}
.v-txt { opacity: 0; color: var(--v-bg); font-family: var(--font-sans); font-size: 0.7rem; font-weight: 500; letter-spacing: 2px; transition: opacity 0.3s; }
.v-cursor.hover { width: 80px; height: 80px; background: rgba(42, 42, 42, 0.9); }
.v-cursor.hover .v-txt { opacity: 1; }

/* Nav */
.velvet-nav {
    position: fixed; top: 0; width: 100%; padding: 30px 5%; display: flex; justify-content: space-between; align-items: center; z-index: 100;
    transition: background 0.4s, padding 0.4s;
}
.velvet-nav.scrolled { background: rgba(250, 248, 245, 0.95); padding: 20px 5%; border-bottom: 1px solid var(--v-border); backdrop-filter: blur(5px); }
.logo { font-family: var(--font-serif); font-size: 2rem; letter-spacing: 5px; }
.nav-left a, .nav-right a { color: var(--v-text); text-decoration: none; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin: 0 15px; position: relative; }
.nav-left a::after, .nav-right a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0%; height: 1px; background: var(--v-text); transition: width 0.3s; }
.nav-left a:hover::after, .nav-right a:hover::after { width: 100%; }

/* Hero */
.v-hero { height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-image-wrap { position: absolute; inset: 0; width: 100%; height: 110%; /* Extra height for parallax */ top: -5%; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: brightness(0.8) sepia(20%); }

.hero-text { position: relative; z-index: 2; text-align: center; color: var(--v-bg); margin-top: 100px; }
.hero-text h1 { font-family: var(--font-serif); font-size: 6rem; line-height: 1; font-weight: 400; margin-bottom: 20px; }
.hero-text h1 span { font-style: italic; font-weight: 600; }
.hero-text p { font-size: 1rem; text-transform: uppercase; letter-spacing: 4px; }

/* Intro */
.v-intro { padding: 150px 10%; text-align: center; background: var(--v-bg); position: relative; z-index: 10; }
.intro-content { max-width: 800px; margin: 0 auto; }
.intro-content h2 { font-family: var(--font-serif); font-size: 2.5rem; line-height: 1.6; font-weight: 400; margin-bottom: 60px; }
.btn-editorial { display: inline-block; padding: 15px 40px; border: 1px solid var(--v-text); color: var(--v-text); text-decoration: none; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; transition: all 0.4s; }
.btn-editorial:hover { background: var(--v-text); color: var(--v-bg); }

/* Parallax Grid */
.v-gallery { padding: 100px 5%; background: var(--v-bg); }
.g-wrapper { display: flex; justify-content: center; gap: 80px; max-width: 1400px; margin: 0 auto; }
.g-col { flex: 1; display: flex; flex-direction: column; gap: 120px; }
.g-right { padding-top: 150px; }

.img-block { position: relative; overflow: hidden; }
.img-block img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%) sepia(10%); transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.img-block:hover img { transform: scale(1.05); }

.block-lg { height: 700px; }
.block-sm { height: 500px; width: 80%; margin: 0 auto; }

.caption { display: block; margin-top: 15px; font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: var(--v-accent); }

/* Details Section */
.v-details { padding: 150px 5%; display: flex; align-items: center; max-width: 1400px; margin: 0 auto; gap: 100px; }
.d-text { flex: 1; padding-right: 50px; }
.d-text h2 { font-family: var(--font-serif); font-size: 4rem; margin-bottom: 30px; font-weight: 400; }
.d-text p { font-size: 1.2rem; line-height: 1.8; color: #555; }
.d-image { flex: 1; height: 600px; }
.d-image img { width: 100%; height: 100%; object-fit: cover; }

/* Footer */
.v-footer { padding: 100px 5% 50px; background: var(--v-text); color: var(--v-bg); }
.f-form { text-align: center; margin-bottom: 100px; }
.f-form h3 { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 400; font-style: italic; margin-bottom: 30px; }
.input-wrap { display: flex; justify-content: center; max-width: 500px; margin: 0 auto; border-bottom: 1px solid var(--v-bg); }
.input-wrap input { flex: 1; background: transparent; border: none; padding: 15px 0; color: var(--v-bg); font-family: var(--font-sans); outline: none; font-size: 1rem; }
.input-wrap input::placeholder { color: rgba(250, 248, 245, 0.5); }
.input-wrap button { background: transparent; border: none; color: var(--v-bg); font-size: 1.5rem; padding: 0 10px; transition: transform 0.3s; }
.input-wrap button:hover { transform: translateX(5px); }

.f-links { display: flex; justify-content: space-around; max-width: 1000px; margin: 0 auto 80px; }
.col h4 { font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; margin-bottom: 25px; font-weight: 400; }
.col a { display: block; color: rgba(250, 248, 245, 0.7); text-decoration: none; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; transition: color 0.3s; }
.col a:hover { color: var(--v-bg); }

.copy { text-align: center; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(250, 248, 245, 0.5); }

@media (max-width: 900px) {
    .hero-text h1 { font-size: 4rem; }
    .g-wrapper { flex-direction: column; gap: 50px; }
    .g-right { padding-top: 0; }
    .block-sm { width: 100%; height: 400px; }
    .block-lg { height: 500px; }
    .v-details { flex-direction: column; text-align: center; }
    .d-text { padding-right: 0; }
    .f-links { flex-direction: column; align-items: center; text-align: center; gap: 40px; }
}
