/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    line-height: 1.8;
    color: #3a3440;
    background-color: #f5f0f0;
    background-image: url('WhatsApp Unknown 2025-08-24 at 17.57.59/merakibackground.jpeg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 250, 250, 0.9) 25%,
        rgba(255, 253, 253, 0.9) 50%,
        rgba(255, 250, 245, 0.88) 75%,
        rgba(255, 255, 255, 0.85) 100%);
    z-index: -1;
}

/* Typography - Mughlai Royal Style */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #8B7355;
    background: linear-gradient(135deg, #B8860B 0%, #8B7355 50%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(139, 115, 85, 0.15);
}

h1 { 
    font-size: 3rem; 
    font-weight: 600;
    letter-spacing: 0.08em;
}
h2 { 
    font-size: 2.5rem;
    letter-spacing: 0.06em;
}
h3 { 
    font-size: 2rem;
    font-weight: 500;
}
h4 { 
    font-size: 1.6rem;
    font-weight: 500;
}

p {
    margin-bottom: 1.2rem;
    color: #5a4a3a;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header - Mughlai Royal */
.header {
    background: linear-gradient(180deg, rgba(224, 176, 255, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #D4AF37, #C0C0C0, #D4AF37) 1;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo h1 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.logo-tagline {
    font-size: 0.95rem;
    background: linear-gradient(90deg, #D4AF37, #C0C0C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.15em;
    margin: 0;
    font-style: italic;
}

.nav-list {
    display: none;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #5a4a3a;
    font-weight: 500;
    font-family: 'Cormorant Garamond', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, #D4AF37, #C0C0C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #C0C0C0);
    transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #C0C0C0);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Mughlai Royal */
.hero {
    padding: 8rem 0;
    position: relative;
    background: rgba(224, 176, 255, 0.15);
    color: #6B5D51;
    text-align: center;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, transparent, #D4AF37, #C0C0C0, #D4AF37, transparent) 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(224, 176, 255, 0.4) 0%, 
        rgba(255, 192, 203, 0.4) 25%,
        rgba(176, 224, 230, 0.4) 50%,
        rgba(255, 215, 154, 0.4) 100%);
    z-index: -1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-shadow: 0 3px 6px rgba(212, 175, 55, 0.25);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #5a4a3a;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.8;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37, #C0C0C0);
    color: #ffffff;
    border: 2px solid #D4AF37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #C0C0C0, #D4AF37);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #C0C0C0;
    border-color: #C0C0C0;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
}

/* Philosophy Section - Mughlai */
.philosophy {
    padding: 6rem 0;
    background: linear-gradient(180deg, 
        rgba(255, 192, 203, 0.2) 0%, 
        rgba(255, 255, 255, 0.9) 50%,
        rgba(176, 224, 230, 0.2) 100%);
    text-align: center;
    position: relative;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.6) 1px, transparent 1px),
        radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.5) 1.5px, transparent 1.5px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 120px 120px;
    opacity: 0.3;
    pointer-events: none;
}

.philosophy-content h3 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.philosophy-content p {
    font-size: 1.3rem;
    color: #5a4a3a;
    line-height: 2;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
}

.philosophy-final {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #D4AF37, #C0C0C0, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    margin-top: 2.5rem;
    font-weight: 500;
}

/* Signature Weaves Section - Mughlai */
.signature-weaves {
    padding: 6rem 0;
    background: linear-gradient(135deg,
        rgba(255, 215, 154, 0.3) 0%,
        rgba(224, 176, 255, 0.3) 100%);
    color: #3a3440;
    text-align: center;
    position: relative;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, #D4AF37, #C0C0C0, #D4AF37, transparent) 1;
}

.weaves-content {
    position: relative;
    z-index: 1;
}

.weaves-content h3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.weaves-tagline {
    font-size: 1.8rem;
    background: linear-gradient(90deg, #D4AF37, #C0C0C0, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.weaves-description {
    font-size: 1.3rem;
    color: #5a4a3a;
    line-height: 2;
    max-width: 850px;
    margin: 0 auto;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
}

/* Craft Section - Mughlai */
.craft {
    padding: 6rem 0;
    background: linear-gradient(180deg,
        rgba(255, 192, 203, 0.2) 0%,
        rgba(255, 255, 255, 0.85) 100%);
    color: #6B5D51;
    text-align: center;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: inherit;
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
}

.craft-content {
    position: relative;
    z-index: 1;
}

.craft-content p {
    font-size: 1.3rem;
    color: #5a4a3a;
    line-height: 2;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
}

.craft-signature {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #D4AF37, #C0C0C0, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    margin-top: 2.5rem;
    font-weight: 500;
}

/* Pearl Pattern for Embroidery mentions */
*:contains("embroider"),
*:contains("embroidery"),
.embroidery-text {
    position: relative;
    padding: 0.2em 0.5em;
}

*:contains("embroider")::before,
*:contains("embroidery")::before,
.embroidery-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.9) 2px, transparent 2px),
        radial-gradient(circle at 45% 15%, rgba(255, 255, 255, 0.8) 1.5px, transparent 1.5px),
        radial-gradient(circle at 75% 35%, rgba(255, 255, 255, 0.85) 2px, transparent 2px),
        radial-gradient(circle at 25% 70%, rgba(255, 255, 255, 0.7) 1.5px, transparent 1.5px),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.9) 2px, transparent 2px),
        radial-gradient(circle at 55% 85%, rgba(255, 255, 255, 0.75) 1.5px, transparent 1.5px);
    background-size: 50px 50px, 60px 60px, 55px 55px, 45px 45px, 50px 50px, 52px 52px;
    background-color: rgba(212, 175, 55, 0.05);
    border-radius: 4px;
    z-index: -1;
    pointer-events: none;
}

/* Collections Preview - Mughlai */
.collections-preview {
    padding: 6rem 0;
    background: linear-gradient(135deg,
        rgba(224, 176, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.85) 50%,
        rgba(255, 215, 154, 0.2) 100%);
    position: relative;
}

.collections-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 90% 80%, rgba(192, 192, 192, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.collections-grid {
    display: grid;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.collection-card {
    text-align: center;
    padding: 3rem 2.5rem;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #D4AF37, #C0C0C0, #D4AF37) border-box;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    position: relative;
}

.collection-card::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    pointer-events: none;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.25);
}

.collection-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.collection-card p {
    color: #5a4a3a;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Customer Gallery - Mughlai Royal Aesthetic */
.customer-gallery {
    padding: 6rem 0;
    background: linear-gradient(180deg,
        rgba(176, 224, 230, 0.25) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(224, 176, 255, 0.25) 100%);
    color: #6B5D51;
    position: relative;
}

.customer-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(212, 175, 55, 0.03) 50px, rgba(212, 175, 55, 0.03) 51px),
        repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(192, 192, 192, 0.03) 50px, rgba(192, 192, 192, 0.03) 51px);
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #D4AF37, #C0C0C0, #D4AF37) border-box;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%, rgba(192, 192, 192, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.35);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* CTA Section - Mughlai Royal */
.cta {
    padding: 6rem 0;
    background: linear-gradient(180deg,
        rgba(255, 192, 203, 0.25) 0%,
        rgba(224, 176, 255, 0.25) 100%);
    text-align: center;
    position: relative;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, transparent, #D4AF37, #C0C0C0, #D4AF37, transparent) 1;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(212, 175, 55, 0.02) 100px, rgba(212, 175, 55, 0.02) 101px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* Page Header */
.page-header {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
}

.page-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.page-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
}

/* About Page */
.about-content {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.95);
}

.about-grid {
    display: grid;
    gap: 4rem;
}

.about-text h3 {
    color: #1a1a1a;
    margin-top: 3rem;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-signature {
    font-size: 1.3rem;
    color: #d4af37;
    font-style: italic;
    margin-top: 2rem;
}

.about-visual {
    display: none;
}

.heritage {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
}

.heritage-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

/* Collections Page */
.collection-hero {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.collection-intro h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.collection-intro p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.collection-detail {
    padding: 6rem 0;
}

.collection-detail.alt {
    background: rgba(0, 0, 0, 0.05);
}

.collection-item {
    display: grid;
    gap: 4rem;
    align-items: center;
}

.collection-text h3 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.collection-subtitle {
    font-size: 1.1rem;
    color: #d4af37;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.collection-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.collection-features span {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.collection-gallery {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}

.collection-cta {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
}

/* Contact Page */
.contact-content {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.95);
}

.contact-grid {
    display: grid;
    gap: 4rem;
}

.contact-info h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.luxury-note {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid #d4af37;
}

.luxury-note h4 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-form-container h3 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4af37;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-brand h4 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
}

/* Values Section */
.values {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
}

.values-grid {
    display: grid;
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 0;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.value-card h4 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.value-card p {
    color: rgba(255,255,255,0.8);
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-list {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .collections-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 2fr 1fr;
    }
    
    .about-visual {
        display: block;
    }
    
    .about-placeholder {
        width: 100%;
        height: 400px;
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.3);
        position: relative;
    }
    
    .heritage-elements {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .heritage-element {
        width: 80px;
        height: 80px;
        background: #d4af37;
        border-radius: 50%;
        margin: 10px;
        display: inline-block;
        opacity: 0.8;
    }
    
    .heritage-2 {
        background: #b8941f;
    }
    
    .heritage-3 {
        background: #8b6914;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .collection-item {
        grid-template-columns: 1fr 1fr;
    }
    
    .collection-item.alt .collection-item {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Form Submission Feedback */
.contact-form.submitted {
    pointer-events: none;
    opacity: 0.7;
}

.contact-form.submitted::after {
    content: "Thank you! Your consultation request has been submitted.";
    display: block;
    text-align: center;
    color: #059669;
    font-weight: 500;
    margin-top: 1rem;
}

/* Focus States */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/* Loading States */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
