/* ============================================
   LUXURA MONTE-CARLO - PREMIUM STYLESHEET
   ============================================ */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-gold: #C9A961;
    --dark-gold: #B08D4F;
    --light-gold: #E5D4A8;
    --black: #0A0A0A;
    --charcoal: #1A1A1A;
    --dark-gray: #2A2A2A;
    --medium-gray: #666666;
    --light-gray: #CCCCCC;
    --white: #FFFFFF;
    --ivory: #F8F6F3;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-padding: 20px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--medium-gray);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition-smooth);
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .logo a {
    color: var(--black);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
}

.logo .monte-carlo {
    color: var(--primary-gold);
    font-weight: 400;
    font-style: italic;
}

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

.nav-link {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: var(--transition-smooth);
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-cta {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 2px;
}

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

.nav-cta:hover {
    background: var(--primary-gold);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-toggle span {
    background: var(--black);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: kenburns 20s ease-in-out infinite alternate;
}

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

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

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.95);
    letter-spacing: 0.03em;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: var(--white);
    margin: 10px auto 0;
    position: relative;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

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

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1rem;
}

.btn-small {
    padding: 10px 25px;
    font-size: 0.85rem;
}

/* ===== SECTIONS ===== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    font-weight: 300;
}

/* ===== PROMISE SECTION ===== */
.promise-section {
    background: var(--ivory);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.promise-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.promise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.promise-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

.promise-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.promise-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* ===== PRODUCTS PREVIEW ===== */
.products-preview {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 60px 0 50px;
}

.product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--ivory);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.btn-view {
    padding: 12px 30px;
    background: var(--white);
    color: var(--black);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.btn-view:hover {
    background: var(--primary-gold);
    color: var(--white);
}

.product-info {
    padding: 25px 0;
    text-align: center;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.product-info p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
    padding: 0;
}

.experience-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.experience-content {
    display: flex;
    align-items: center;
    padding: 80px;
    background: var(--ivory);
}

.experience-inner h2 {
    margin-bottom: 25px;
}

.experience-inner p {
    margin-bottom: 20px;
    color: var(--medium-gray);
}

.experience-inner .btn {
    margin-top: 20px;
}

.experience-image {
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 0;
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 0.95rem;
    border-radius: 2px;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-logo span {
    color: var(--primary-gold);
    font-style: italic;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.7);
}

.contact-info i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

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

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--charcoal), var(--dark-gray));
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
}

/* ===== BOUTIQUE PAGE ===== */
.boutique-section {
    padding: 80px 0;
}

.shop-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--light-gray);
    color: var(--charcoal);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 2px;
    letter-spacing: 0.05em;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

.sort-select {
    padding: 10px 20px;
    border: 1px solid var(--light-gray);
    background: var(--white);
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 2px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.shop-product {
    background: var(--white);
    transition: var(--transition-smooth);
}

.shop-product:hover {
    transform: translateY(-5px);
}

.shop-product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--ivory);
}

.shop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.shop-product:hover .shop-product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    border-radius: 2px;
}

.product-badge.new {
    background: var(--primary-gold);
    color: var(--white);
}

.product-badge.exclusive {
    background: var(--black);
    color: var(--white);
}

.shop-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.shop-product:hover .shop-product-overlay {
    opacity: 1;
}

.btn-icon {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-icon:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: scale(1.1);
}

.shop-product-info {
    padding: 25px 0;
}

.product-category {
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.shop-product-info h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--black);
}

.product-description {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    border: 1px solid var(--light-gray);
    background: var(--white);
    color: var(--charcoal);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.pagination-btn:hover:not(:disabled),
.pagination-btn.active {
    background: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ===== SERVICES BANNER ===== */
.services-banner {
    background: var(--ivory);
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-item {
    text-align: center;
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.service-item h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.service-item p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* ===== ABOUT PAGE ===== */
.about-header {
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1549890762-0a3f8933bc5c?q=80&w=2069');
    background-size: cover;
    background-position: center;
}

.story-section {
    padding: 100px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    margin-bottom: 15px;
}

.story-text .subtitle {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.story-text p {
    margin-bottom: 20px;
    color: var(--medium-gray);
}

.story-image {
    height: 600px;
    overflow: hidden;
    border-radius: 4px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== VALUES SECTION ===== */
.values-section {
    background: var(--ivory);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.value-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.value-number {
    font-size: 3rem;
    font-family: var(--font-serif);
    color: var(--light-gold);
    margin-bottom: 20px;
    font-weight: 300;
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.value-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    padding: 100px 0;
    background: var(--charcoal);
    text-align: center;
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
}

.quote-content i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 30px;
}

.quote-content blockquote {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 30px;
}

.quote-content cite {
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 500;
}

/* ===== CRAFTSMANSHIP SECTION ===== */
.craftsmanship-section {
    padding: 100px 0;
}

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

.craft-image {
    height: 600px;
    overflow: hidden;
    border-radius: 4px;
}

.craft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.craft-content h2 {
    margin-bottom: 15px;
}

.craft-content .lead {
    margin-bottom: 40px;
}

.craft-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.craft-feature {
    display: flex;
    gap: 25px;
}

.craft-feature i {
    font-size: 2rem;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.craft-feature h4 {
    margin-bottom: 8px;
}

.craft-feature p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* ===== TIMELINE ===== */
.timeline-section {
    background: var(--ivory);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--light-gray);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px var(--white);
}

.timeline-year {
    text-align: right;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-gold);
}

.timeline-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--medium-gray);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--charcoal), var(--dark-gray));
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT PAGE ===== */
.contact-header {
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1582719471137-c3967ffb1c42?q=80&w=2070');
    background-size: cover;
    background-position: center;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2 {
    margin-bottom: 15px;
}

.form-intro {
    color: var(--medium-gray);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--medium-gray);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-note {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-top: -10px;
}

/* ===== CONTACT CARDS ===== */
.contact-card {
    background: var(--ivory);
    padding: 40px;
    border-radius: 4px;
}

.contact-card h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary-gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-text p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.contact-text .small {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.social-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
}

.social-section h4 {
    margin-bottom: 15px;
}

.vip-service-card {
    background: var(--primary-gold);
    color: var(--white);
    padding: 40px;
    border-radius: 4px;
    text-align: center;
    margin-top: 30px;
}

.vip-service-card i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vip-service-card h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.vip-service-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    line-height: 1.7;
}

.vip-service-card .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.vip-service-card .btn-outline:hover {
    background: var(--white);
    color: var(--primary-gold);
}

/* ===== MAP ===== */
.map-section {
    padding: 0;
}

.map-container iframe {
    display: block;
    filter: grayscale(30%) contrast(90%);
}

/* ===== FAQ ===== */
.faq-section {
    padding: 100px 0;
    background: var(--ivory);
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--ivory);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-question i {
    color: var(--primary-gold);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 70px;
    }
    
    .experience-split,
    .story-content,
    .craft-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-content {
        padding: 60px 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 25px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .nav-link {
        color: var(--black);
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .promise-grid,
    .products-grid,
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        justify-content: center;
    }
    
    .timeline::before {
        left: 0;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 40px;
    }
    
    .timeline-item::before {
        left: 0;
    }
    
    .timeline-year {
        text-align: left;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== ANIMATIONS AOS ===== */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ===== SMOOTH SCROLLING ===== */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
