@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=Montserrat:wght@300;400;500;600&family=Mrs+Saint+Delafield&display=swap');

:root {
    --color-gold: #c9a962;
    --color-gold-light: #e8d5a3;
    --color-dark: #1a1a1a;
    --color-cream: #faf8f5;
    --color-text: #333;
    --color-text-light: #666;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-logo {
    text-align: center;
    padding: 20px 0 10px;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(30%) sepia(5%) saturate(0%) hue-rotate(0deg) brightness(50%) contrast(90%);
}

.header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px 15px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    justify-content: center;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #4a4a4a;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #4a4a4a;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-dark);
    transition: all 0.3s ease;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-cream) 0%, #f5f0e8 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.1) rotate(5deg); opacity: 0.8; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 150px 40px 80px;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--color-dark);
}

.hero-title span {
    display: block;
    font-style: italic;
    color: var(--color-gold);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 450px;
}

.hero-price {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 30px;
}

.hero-price span {
    font-size: 1rem;
    color: var(--color-text-light);
    font-family: var(--font-sans);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: var(--color-dark);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: var(--color-dark);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-image-wrapper {
    position: relative;
    padding: 40px;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 1px solid var(--color-gold);
    animation: borderFloat 6s ease-in-out infinite;
}

@keyframes borderFloat {
    0%, 100% { transform: translate(20px, 20px); }
    50% { transform: translate(30px, 30px); }
}

.hero-image img {
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 10s ease-in-out infinite;
}

.floating-dot:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-dot:nth-child(2) { top: 60%; left: 5%; animation-delay: 2s; }
.floating-dot:nth-child(3) { top: 80%; left: 15%; animation-delay: 4s; }
.floating-dot:nth-child(4) { top: 30%; right: 10%; animation-delay: 1s; }
.floating-dot:nth-child(5) { top: 70%; right: 5%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.2); }
}

section {
    padding: 100px 40px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 20px auto 0;
}

.gallery {
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-zoom {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.details {
    background: var(--color-cream);
}

.details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.details-left h3,
.details-right h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--color-dark);
}

.details-list {
    list-style: none;
}

.details-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.details-list li span:first-child {
    color: var(--color-text-light);
}

.details-list li span:last-child {
    font-weight: 500;
}

.description-text {
    color: var(--color-text-light);
    line-height: 1.8;
}

.description-text p {
    margin-bottom: 20px;
}

.craftsmanship {
    background: var(--color-dark);
    color: #fff;
    text-align: center;
}

.craftsmanship .section-title {
    color: #fff;
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.craft-item {
    padding: 40px 30px;
    border: 1px solid rgba(201, 169, 98, 0.3);
    transition: all 0.3s ease;
}

.craft-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-10px);
}

.craft-item i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 25px;
}

.craft-item h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.craft-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.cta {
    background: linear-gradient(135deg, #f5f0e8 0%, var(--color-cream) 100%);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-price {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--color-dark);
    margin: 30px 0;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

footer {
    background: var(--color-dark);
    color: #fff;
    padding: 60px 40px 30px;
    text-align: center;
}

.footer-logo-section {
    margin-bottom: 30px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    height: 45px;
    width: auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.footer-nav a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.footer-legal a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--color-gold);
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-description {
        margin: 0 auto 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .details-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .craftsmanship-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        position: relative;
    }
    
    .nav-links {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background: var(--color-cream);
        flex-direction: column;
        align-items: center;
        padding: 30px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .menu-toggle {
        display: flex;
        position: static;
        transform: none;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-content {
        padding: 140px 20px 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-price {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .footer-nav {
        gap: 20px;
    }
    
    .footer-legal {
        gap: 15px;
    }
    
    .cta-price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-primary {
        padding: 15px 30px;
        font-size: 0.8rem;
    }
}
