/*
Theme Name: Niva Couture V5
Theme URI: http://www.nivacouture.co
Description: A bespoke luxury standalone theme for Niva Couture.
Version: 1.0.0
Author: Antigravity Designers
Author URI: https://antigravity.ai
Text Domain: niva-couture
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Syne:wght@400;500;700;800&display=swap');

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette - Gold, Noir, Crystal & Cream */
    --noir: #0a0a0a;
    --noir-light: #141414;
    --noir-border: rgba(255, 255, 255, 0.08);
    --gold: #c5a880;
    --gold-bright: #e5c295;
    --gold-muted: rgba(197, 168, 128, 0.4);
    --cream: #FAF8F5;
    --cream-dark: #f0ede6;
    --cream-border: rgba(10, 10, 10, 0.08);
    --crystal: #ffffff;
    --silver: #e5e5e5;
    --grey: #8a8a8a;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Syne', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--noir);
    color: var(--silver);
    overflow-x: hidden;
}

body {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.6;
    background-color: var(--noir);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--noir);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-bright);
}

/* Links & Buttons Reset */
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button, input, textarea {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
    color: inherit;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
.serif-italic {
    font-style: italic;
    font-family: var(--font-serif);
}

.brand-text {
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    display: block;
    margin-bottom: 1.5rem;
}

.section-number {
    display: none !important;
}

.light-theme .section-number {
    opacity: 0.08;
    color: var(--noir);
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
    color: var(--crystal);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

p {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    color: var(--grey);
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.8rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: 1px solid var(--gold);
    color: var(--crystal);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--gold);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-premium:hover::before {
    left: 0;
}

.btn-premium:hover {
    color: var(--noir);
    border-color: var(--gold-bright);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.header-nav.scrolled {
    padding: 1rem 4rem;
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    border-color: var(--noir-border);
}

.header-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-logo .monogram {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    border: 1px solid var(--gold);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 0.2rem;
    font-weight: 300;
}

.header-logo .brand-name {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.25em;
}

.nav-links {
    display: flex;
    gap: 3rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.nav-links a {
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

.cta-booking {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
}

.cta-booking:hover {
    color: var(--crystal);
    border-color: var(--crystal);
}

/* Mobile Menu Trigger */
.menu-trigger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-trigger span {
    display: block;
    width: 25px;
    height: 1px;
    background-color: var(--crystal);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO / BANNER
   ========================================================================== */
.hero-section {
    height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background: linear-gradient(135deg, #141414 0%, #0a0a0a 100%);
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 0.95;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-title span {
    display: block;
}

.hero-title .italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
    padding-left: 2rem;
}

.hero-left p {
    max-width: 480px;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0.8;
}

.hero-right {
    flex: 1.2;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.03);
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10,10,10,1) 0%, rgba(10,10,10,0.2) 20%, rgba(10,10,10,0) 100%);
}

/* ==========================================================================
   THE HOUSE OF NIVA (BRAND INTRO)
   ========================================================================== */
.section-padding {
    padding: 8rem 6rem;
    position: relative;
}

.intro-section {
    background-color: var(--cream);
    color: var(--noir);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.intro-content {
    position: relative;
}

.intro-content h2 {
    color: var(--noir);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.15;
}

.intro-content .quote {
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 2.5rem;
    font-weight: 300;
    border-left: 2px solid var(--gold);
    padding-left: 2rem;
    font-style: italic;
}

.intro-text-block {
    margin-bottom: 2.5rem;
}

.intro-text-block p {
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.intro-image-container {
    position: relative;
    height: 650px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.intro-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.intro-image-container:hover .intro-image {
    transform: scale(1.05);
}

/* ==========================================================================
   THE RANGE (INTERACTIVE SHOWCASE)
   ========================================================================== */
.range-section {
    background-color: var(--noir);
}

.range-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.range-card {
    height: 600px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--noir-border);
}

.range-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.range-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.range-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0) 40%, rgba(10,10,10,0.85) 90%);
    transition: var(--transition-smooth);
    z-index: 1;
}

.range-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    z-index: 2;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.range-card-content h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--crystal);
}

.range-card-content p {
    font-size: 1rem;
    color: var(--gold);
    opacity: 0;
    transition: var(--transition-smooth);
    transform: translateY(10px);
}

/* Range Card Hover Interactions */
.range-card:hover .range-img {
    transform: scale(1.07);
}

.range-card:hover::after {
    background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.95) 100%);
}

.range-card:hover .range-card-content {
    transform: translateY(0);
}

.range-card:hover .range-card-content p {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   THE CRAFT (EDITORIAL ROW BREAKDOWN)
   ========================================================================== */
.craft-section {
    background-color: var(--cream);
    color: var(--noir);
}

.craft-section h2 {
    color: var(--noir);
    margin-bottom: 4rem;
}

.craft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.craft-list {
    display: flex;
    flex-direction: column;
}

.craft-item {
    border-top: 1px solid var(--cream-border);
    padding: 2.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.craft-item:last-child {
    border-bottom: 1px solid var(--cream-border);
}

.craft-item-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
}

.craft-item-title {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--noir);
    margin-bottom: 0.8rem;
    transition: var(--transition-smooth);
}

.craft-item-desc {
    font-size: 1.1rem;
    color: #555;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: var(--transition-smooth);
}

/* Active Craft Row Style */
.craft-item.active {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.craft-item.active .craft-item-title {
    color: var(--gold);
    transform: translateX(10px);
}

.craft-item.active .craft-item-desc {
    max-height: 120px;
    opacity: 1;
    margin-top: 0.5rem;
}

.craft-image-viewer {
    position: relative;
    height: 550px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.craft-viewer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.craft-viewer-img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* ==========================================================================
   THE LOOKBOOK (EDITORIAL GALLERY WITH MASONRY)
   ========================================================================== */
.lookbook-section {
    background-color: var(--noir);
}

.lookbook-filters {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.filter-btn {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--grey);
    cursor: pointer;
    position: relative;
    padding-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition-smooth);
}

.filter-btn.active {
    color: var(--gold);
}

.filter-btn.active::after {
    width: 100%;
}

.gallery-grid {
    column-count: 3;
    column-gap: 2rem;
    width: 100%;
    margin-top: 2rem;
}

.gallery-item {
    background-color: var(--noir-light);
    margin-bottom: 2rem;
    break-inside: avoid;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--noir-border);
    transition: var(--transition-smooth);
    opacity: 1;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-item-overlay .category {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.gallery-item-overlay .caption {
    font-size: 1.5rem;
    color: var(--crystal);
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

/* Gallery Item Hover */
.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item:hover .caption {
    transform: translateY(0);
}

/* ==========================================================================
   THE COMMISSION (STEP BY STEP)
   ========================================================================== */
.commission-section {
    background-color: var(--cream);
    color: var(--noir);
}

.commission-section h2 {
    color: var(--noir);
    margin-bottom: 4rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    margin-top: 6rem;
}

.step-card {
    position: relative;
}

.step-num {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.step-num::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--gold-muted);
    margin-left: 1.5rem;
}

.step-card:last-child .step-num::after {
    display: none;
}

.step-title {
    font-size: 1.8rem;
    color: var(--noir);
    margin-bottom: 1rem;
    font-weight: 400;
}

.step-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
}

/* ==========================================================================
   CONTACT & BOOKING (THE ATELIER)
   ========================================================================== */
.contact-section {
    background-color: var(--noir);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    border-top: 1px solid var(--noir-border);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-detail-item p {
    font-size: 1.25rem;
    color: var(--silver);
    margin-bottom: 0;
}

.contact-detail-item a {
    color: var(--silver);
}

.contact-detail-item a:hover {
    color: var(--gold-bright);
}

.booking-form-wrapper {
    background-color: var(--noir-light);
    border: 1px solid var(--noir-border);
    padding: 5rem;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}

.booking-form h3 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.form-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.form-input {
    width: 100%;
    padding: 0.8rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: none;
    color: var(--crystal);
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--gold);
}

.form-label {
    position: absolute;
    top: 0.8rem;
    left: 0;
    font-size: 1.1rem;
    color: var(--grey);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -1.2rem;
    font-size: 0.75rem;
    color: var(--gold);
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0.1em;
}

.form-select {
    width: 100%;
    padding: 0.8rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: none;
    color: var(--crystal);
    appearance: none;
    cursor: pointer;
}

.form-select option {
    background-color: var(--noir-light);
    color: var(--crystal);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-section {
    background-color: #050505;
    padding: 6rem 6rem 4rem 6rem;
    border-top: 1px solid var(--noir-border);
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}

.footer-logo .monogram {
    font-family: var(--font-serif);
    font-size: 2rem;
    border: 1px solid var(--gold);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.footer-logo .brand-name {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 0.3em;
    color: var(--crystal);
}

.footer-logo .brand-subtitle {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-top: 0.3rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--noir-border);
    padding-top: 3rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--grey);
    letter-spacing: 0.1em;
}

/* ==========================================================================
   LIGHTBOX OVERLAY (WOW FACTOR CUSTOM POPUP)
   ========================================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    position: relative;
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    border: 1px solid var(--noir-border);
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    color: var(--crystal);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-caption {
    text-align: center;
    color: var(--gold);
    margin-top: 1.5rem;
    font-size: 1.25rem;
}

/* ==========================================================================
   SCROLL & ENTRANCE ANIMATIONS (WOW INTERACTION)
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* ==========================================================================
   0. CINEMATIC PRELOADER & CUSTOM CURSOR (WOW FACTOR)
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--noir);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 1;
    pointer-events: auto;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    height: 90px;
    width: auto;
    animation: pulseLogo 2.5s infinite ease-in-out;
}

.preloader-text {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 1.5rem;
}

@keyframes pulseLogo {
    0% { opacity: 0.25; transform: scale(0.96); }
    50% { opacity: 1; transform: scale(1.04); }
    100% { opacity: 0.25; transform: scale(0.96); }
}

/* Custom Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 100000;
    transition: width 0.25s, height 0.25s, background-color 0.25s;
}

.custom-cursor-follower {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold-muted);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.08s ease, width 0.25s, height 0.25s, border-color 0.25s, background-color 0.25s;
}

.custom-cursor.hovered {
    width: 12px;
    height: 12px;
    background-color: var(--crystal);
}

.custom-cursor-follower.hovered {
    width: 52px;
    height: 52px;
    border-color: var(--gold-bright);
    background-color: rgba(197, 168, 128, 0.08);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1200px) {
    .section-padding {
        padding: 6rem 4rem;
    }
    .intro-grid, .craft-grid, .contact-section {
        gap: 4rem;
    }
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .step-card:nth-child(2) .step-num::after {
        display: none;
    }
}

@media (max-width: 992px) {
    .custom-cursor, .custom-cursor-follower {
        display: none !important;
    }
    .menu-trigger {
        display: flex !important;
    }
    .header-nav {
        padding: 1.5rem 2rem;
    }
    .header-nav.scrolled {
        padding: 1rem 2rem;
    }
    .hero-section {
        height: 100vh;
        position: relative;
        display: block;
    }
    .hero-left {
        position: relative;
        z-index: 10;
        height: 100%;
        width: 100%;
        background: rgba(10, 10, 10, 0.45);
        padding: 8rem 2rem 4rem 2rem;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
    .hero-right {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    .hero-slide::after {
        background: linear-gradient(to bottom, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.2) 50%, rgba(10,10,10,0.95) 100%) !important;
    }
    .intro-grid {
        grid-template-columns: 1fr;
    }
    .intro-image-container {
        height: 450px;
    }
    .range-grid {
        grid-template-columns: 1fr;
    }
    .range-card {
        height: 500px;
    }
    .craft-grid {
        grid-template-columns: 1fr;
    }
    .craft-image-viewer {
        height: 400px;
        order: -1;
    }
    .gallery-grid {
        column-count: 2;
    }
    .contact-section {
        grid-template-columns: 1fr;
    }
    .booking-form-wrapper {
        padding: 3rem;
    }
    .nav-links {
        display: none; /* Mobile menu logic should control this */
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 4rem 1.5rem;
    }
    .gallery-grid {
        column-count: 1;
    }
    .steps-container {
        grid-template-columns: 1fr;
    }
    .step-num::after {
        display: none;
    }
    .booking-form-wrapper {
        padding: 2rem 1.5rem;
    }
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
