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

:root {
    --primary-black: #0A0A0A;
    --secondary-black: #1A1A1A;
    --dark-gray: #2C2C2C;
    --medium-gray: #8B8B8B;
    --champagne-gold: #D4AF37;
    --ivory-white: #FAF9F6;
    --burgundy: #722F37;
    --light-gold: #F4E4BC;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--primary-black);
    color: var(--ivory-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar {
    padding: 20px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 4px;
    color: var(--champagne-gold);
    font-family: 'Times New Roman', serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--ivory-white);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--champagne-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-select {
    background: transparent;
    border: 1px solid var(--champagne-gold);
    color: var(--ivory-white);
    padding: 8px 16px;
    font-size: 12px;
    cursor: pointer;
    letter-spacing: 1px;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1523170335258-f5ed11844a49?w=1920&q=80') center center / cover no-repeat, linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px);
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.6);
    z-index: 0;
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1.5s ease;
}

.hero-title {
    font-size: 64px;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 20px;
    color: var(--ivory-white);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    letter-spacing: 4px;
    color: var(--champagne-gold);
    margin-bottom: 40px;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    border: 2px solid var(--champagne-gold);
    color: var(--champagne-gold);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--champagne-gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--primary-black);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounceStep 2.5s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 38px;
    border: 2px solid var(--champagne-gold);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4),
                0 0 30px rgba(212, 175, 55, 0.2);
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 10px;
    background: var(--champagne-gold);
    border-radius: 3px;
    animation: scrollDownStep 2s infinite;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.8);
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 10px;
    background: var(--champagne-gold);
    border-radius: 3px;
    animation: scrollDownStep2 2s infinite;
    opacity: 0.5;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.scroll-arrows i {
    display: block;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--champagne-gold);
    border-bottom: 2px solid var(--champagne-gold);
    transform: rotate(45deg);
    animation: arrowStep 2s infinite;
    opacity: 0;
}

.scroll-arrows i:nth-child(1) {
    animation-delay: 0s;
}

.scroll-arrows i:nth-child(2) {
    animation-delay: 0.3s;
}

.scroll-arrows i:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes arrowStep {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
    30% {
        opacity: 1;
        transform: rotate(45deg) translate(0, 0);
    }
    60% {
        opacity: 1;
        transform: rotate(45deg) translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: var(--ivory-white);
}

.title-decoration {
    width: 60px;
    height: 2px;
    background: var(--champagne-gold);
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--medium-gray);
    letter-spacing: 1px;
}

.brand-story {
    padding: 120px 0;
    background: var(--secondary-black);
    position: relative;
}

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

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.story-text {
    font-size: 18px;
    line-height: 2;
}

.story-intro {
    font-size: 24px;
    color: var(--champagne-gold);
    margin-bottom: 30px;
    font-style: italic;
}

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

.story-image {
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--secondary-black) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0;
    text-align: center;
    color: var(--medium-gray);
    font-size: 18px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.image-placeholder:hover img {
    transform: scale(1.05);
}

.card-image .image-placeholder img,
.product-image .image-placeholder img,
.news-image .image-placeholder img {
    min-height: inherit;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.image-placeholder.large {
    min-height: 500px;
}

.watch-svg {
    width: 100%;
    max-width: 280px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.2));
    transition: transform 0.4s ease;
}

.image-placeholder:hover .watch-svg {
    transform: scale(1.05);
}

.watch-svg-large {
    max-width: 400px;
}

.watch-svg-hero {
    max-width: 500px;
    filter: drop-shadow(0 20px 60px rgba(212, 175, 55, 0.3));
}

.hero-watch-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.story-svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.story-svg-container .watch-svg {
    max-width: 350px;
}

.craft-svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
}

.craft-svg-container .watch-svg {
    max-width: 300px;
}

.news-svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.news-svg-container .watch-svg {
    max-width: 160px;
}

.store-svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 180px;
}

.store-svg-container .watch-svg {
    max-width: 140px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 40px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    color: var(--champagne-gold);
    font-weight: 300;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--medium-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.collection {
    padding: 120px 0;
    background: var(--primary-black);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.collection-card {
    background: var(--secondary-black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.collection-card:hover {
    transform: translateY(-10px);
    border-color: var(--champagne-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image .image-placeholder {
    min-height: 300px;
    transition: transform 0.4s ease;
}

.collection-card:hover .card-image .image-placeholder {
    transform: scale(1.05);
}

.card-content {
    padding: 40px;
}

.card-content h3 {
    font-size: 24px;
    color: var(--champagne-gold);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.card-content p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.card-link {
    color: var(--champagne-gold);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: letter-spacing 0.3s ease;
}

.card-link:hover {
    letter-spacing: 2px;
}

.craftsmanship {
    padding: 120px 0;
    background: var(--secondary-black);
    position: relative;
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.craft-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.craft-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.craft-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.craft-item h3 {
    font-size: 18px;
    color: var(--champagne-gold);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.craft-item p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.8;
}

.testimonials {
    padding: 120px 0;
    background: var(--primary-black);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.testimonial-item {
    padding: 40px;
    background: var(--secondary-black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.quote-mark {
    font-size: 80px;
    color: var(--champagne-gold);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ivory-white);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 20px;
}

.author-name {
    font-size: 16px;
    color: var(--champagne-gold);
    margin-bottom: 5px;
}

.author-title {
    font-size: 12px;
    color: var(--medium-gray);
    letter-spacing: 1px;
}

.media-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.media-item {
    font-size: 18px;
    color: var(--medium-gray);
    letter-spacing: 2px;
    font-weight: bold;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.media-item:hover {
    opacity: 1;
    color: var(--champagne-gold);
}

footer {
    background: var(--secondary-black);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-section h3 {
    font-size: 24px;
    color: var(--champagne-gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-section h4 {
    font-size: 14px;
    color: var(--ivory-white);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-section p {
    color: var(--medium-gray);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--champagne-gold);
}

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

.social-icon {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--champagne-gold);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--champagne-gold);
    color: var(--primary-black);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--medium-gray);
    font-size: 12px;
}

.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: var(--champagne-gold);
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.page-header p {
    font-size: 18px;
    color: var(--medium-gray);
    letter-spacing: 1px;
}

.products-section {
    padding: 80px 0 120px;
    background: var(--primary-black);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 32px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--ivory-white);
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
}

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

.product-series {
    margin-bottom: 100px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.series-header {
    text-align: center;
    margin-bottom: 60px;
}

.series-header h2 {
    font-size: 36px;
    color: var(--champagne-gold);
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.series-header p {
    font-size: 16px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background: var(--secondary-black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--champagne-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image .image-placeholder {
    min-height: 350px;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image .image-placeholder {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: var(--champagne-gold);
    color: var(--primary-black);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-badge.new {
    background: var(--burgundy);
    color: var(--ivory-white);
}

.product-badge.limited {
    background: var(--primary-black);
    color: var(--champagne-gold);
    border: 1px solid var(--champagne-gold);
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 20px;
    color: var(--ivory-white);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.product-ref {
    font-size: 12px;
    color: var(--medium-gray);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.product-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-specs span {
    font-size: 12px;
    color: var(--champagne-gold);
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.product-price {
    font-size: 24px;
    color: var(--champagne-gold);
    margin-bottom: 20px;
    font-weight: 300;
}

.btn-detail {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--champagne-gold);
    color: var(--champagne-gold);
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
}

.btn-detail:hover {
    background: var(--champagne-gold);
    color: var(--primary-black);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.95);
    z-index: 2000;
    overflow-y: auto;
}

.modal.active {
    display: block;
}

.modal-content {
    max-width: 1200px;
    margin: 40px auto;
    background: var(--secondary-black);
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    animation: fadeIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: var(--champagne-gold);
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px;
}

.modal-info h2 {
    font-size: 32px;
    color: var(--champagne-gold);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.modal-ref {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.modal-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    color: var(--medium-gray);
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    font-family: 'Georgia', serif;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--champagne-gold);
    border-bottom-color: var(--champagne-gold);
}

.tab-content {
    display: none;
    margin-bottom: 30px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.tab-content h4 {
    font-size: 18px;
    color: var(--champagne-gold);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.tab-content p {
    color: var(--ivory-white);
    line-height: 1.8;
    margin-bottom: 20px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.specs-table td {
    padding: 15px 0;
    font-size: 14px;
}

.specs-table td:first-child {
    color: var(--medium-gray);
    width: 40%;
}

.specs-table td:last-child {
    color: var(--ivory-white);
}

.modal-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    padding: 16px;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.btn-primary {
    background: var(--champagne-gold);
    border: 1px solid var(--champagne-gold);
    color: var(--primary-black);
}

.btn-primary:hover {
    background: transparent;
    color: var(--champagne-gold);
}

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

.btn-secondary:hover {
    background: var(--champagne-gold);
    color: var(--primary-black);
}

.full-width {
    width: 100%;
}

.nav-icon {
    color: var(--ivory-white);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-icon:hover,
.nav-icon.active {
    color: var(--champagne-gold);
    border-color: var(--champagne-gold);
}

.logo {
    text-decoration: none;
}

.story-timeline {
    position: relative;
    padding: 40px 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(212, 175, 55, 0.3);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--champagne-gold);
    color: var(--primary-black);
    padding: 8px 20px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    z-index: 1;
}

.timeline-content {
    width: 42%;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.timeline-content h3 {
    color: var(--champagne-gold);
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

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

.timeline-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    margin-bottom: 16px;
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
    transition: opacity 0.6s ease 0.4s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s;
}

.timeline-visible .timeline-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.timeline-connector {
    position: absolute;
    top: 50%;
    width: 0;
    height: 1px;
    transform: translateY(-50%);
    transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
    z-index: 0;
}

.timeline-item:nth-child(odd) .timeline-connector {
    right: 50%;
    left: auto;
    background: linear-gradient(270deg, rgba(212, 175, 55, 0.5), rgba(212, 175, 55, 0.1));
}

.timeline-item:nth-child(even) .timeline-connector {
    left: 50%;
    right: auto;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.5), rgba(212, 175, 55, 0.1));
}

.timeline-visible .timeline-connector {
    width: 8%;
}

.timeline-hidden {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.timeline-item:nth-child(odd).timeline-hidden {
    transform: translateX(-80px);
}

.timeline-item:nth-child(even).timeline-hidden {
    transform: translateX(80px);
}

.timeline-visible {
    opacity: 1;
    transform: translateX(0) !important;
}

.timeline-item:nth-child(odd).timeline-visible .timeline-content {
    animation: timelineContentSlideLeft 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.timeline-item:nth-child(even).timeline-visible .timeline-content {
    animation: timelineContentSlideRight 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.timeline-year-hidden {
    opacity: 0;
    transform: translateX(-50%) scale(0.5);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-year-visible {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    animation: yearPulse 2s ease-in-out;
}

@keyframes timelineContentSlideLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
        border-color: transparent;
    }
    60% {
        border-color: rgba(212, 175, 55, 0.4);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        border-color: rgba(212, 175, 55, 0.2);
    }
}

@keyframes timelineContentSlideRight {
    0% {
        opacity: 0;
        transform: translateX(40px);
        border-color: transparent;
    }
    60% {
        border-color: rgba(212, 175, 55, 0.4);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        border-color: rgba(212, 175, 55, 0.2);
    }
}

@keyframes yearPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
    }
    40% {
        box-shadow: 0 0 20px 8px rgba(212, 175, 55, 0.3);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes timelineLineGrow {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

.timeline-line-animate::before {
    animation: timelineLineGrow 2.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    transform-origin: top center;
}

.timeline-visible .timeline-content {
    position: relative;
    overflow: hidden;
}

.timeline-visible .timeline-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.06), transparent);
    animation: timelineShimmer 1.2s 0.5s ease forwards;
}

@keyframes timelineShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.section-header-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-header-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header-visible .title-decoration {
    animation: decorationExpand 0.8s 0.3s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes decorationExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 60px;
        opacity: 1;
    }
}

.brand-values {
    padding: 120px 0;
    background: var(--primary-black);
}

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

.value-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-item h3 {
    color: var(--champagne-gold);
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 1px;
}

.value-item p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.8;
}

.brand-heritage {
    padding: 120px 0;
    background: var(--secondary-black);
}

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

.heritage-text h2 {
    font-size: 36px;
    color: var(--champagne-gold);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.heritage-intro {
    font-size: 18px;
    color: var(--champagne-gold);
    margin-bottom: 30px;
    font-style: italic;
}

.heritage-text p {
    color: var(--ivory-white);
    line-height: 2;
    margin-bottom: 20px;
}

.brand-quote {
    padding: 120px 0;
    background: var(--primary-black);
}

.quote-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 40px;
}

.quote-block .quote-mark {
    font-size: 120px;
    color: var(--champagne-gold);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 0;
    font-family: Georgia, serif;
}

.quote-block p {
    font-size: 22px;
    line-height: 2;
    color: var(--ivory-white);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.quote-block cite {
    display: block;
    margin-top: 30px;
    font-size: 16px;
    color: var(--champagne-gold);
    letter-spacing: 2px;
}

.craft-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.craft-detail-item.reverse {
    direction: rtl;
}

.craft-detail-item.reverse > * {
    direction: ltr;
}

.craft-detail-content h3 {
    font-size: 28px;
    color: var(--champagne-gold);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.craft-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 12px;
    color: var(--medium-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.spec-value {
    font-size: 14px;
    color: var(--champagne-gold);
    margin-top: 5px;
}

.craft-detail-content p {
    color: var(--ivory-white);
    line-height: 2;
    margin-bottom: 15px;
}

.craft-process {
    padding: 120px 0;
    background: var(--primary-black);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.step-number {
    font-size: 36px;
    color: var(--champagne-gold);
    font-weight: 300;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 16px;
    color: var(--ivory-white);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.process-step p {
    font-size: 13px;
    color: var(--medium-gray);
    line-height: 1.6;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cert-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cert-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cert-item h3 {
    color: var(--champagne-gold);
    margin-bottom: 15px;
    font-size: 16px;
}

.cert-item p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.8;
}

.series-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.series-intro {
    padding: 120px 0;
    background: var(--secondary-black);
}

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

.intro-text h2 {
    font-size: 36px;
    color: var(--champagne-gold);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.intro-text p {
    color: var(--ivory-white);
    line-height: 2;
    margin-bottom: 20px;
}

.series-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 15px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.feature-item h4 {
    color: var(--champagne-gold);
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 1px;
}

.feature-item p {
    color: var(--medium-gray);
    font-size: 12px;
}

.series-products {
    padding: 120px 0;
    background: var(--primary-black);
}

.product-desc {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions .btn-detail,
.product-actions .btn-secondary {
    flex: 1;
    padding: 10px;
    font-size: 12px;
    text-decoration: none;
    text-align: center;
}

.series-heritage {
    padding: 120px 0;
    background: var(--secondary-black);
}

.heritage-banner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.heritage-banner h2 {
    font-size: 32px;
    color: var(--champagne-gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.heritage-banner p {
    color: var(--ivory-white);
    line-height: 2;
    margin-bottom: 30px;
}

.news-section {
    padding: 80px 0 120px;
    background: var(--primary-black);
}

.news-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.news-card {
    background: var(--secondary-black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--champagne-gold);
}

.news-image {
    position: relative;
}

.news-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--champagne-gold);
    color: var(--primary-black);
    padding: 8px 12px;
    text-align: center;
    line-height: 1.2;
}

.news-date .day {
    display: block;
    font-size: 24px;
    font-weight: bold;
}

.news-date .month {
    font-size: 11px;
}

.news-content {
    padding: 30px;
}

.news-tag {
    display: inline-block;
    font-size: 11px;
    color: var(--champagne-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 18px;
    color: var(--ivory-white);
    margin-bottom: 15px;
    line-height: 1.5;
}

.news-content p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.news-link {
    color: var(--champagne-gold);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
}

.news-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-btn {
    padding: 10px 18px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--ivory-white);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--champagne-gold);
    color: var(--primary-black);
    border-color: var(--champagne-gold);
}

.media-coverage {
    padding: 120px 0;
    background: var(--secondary-black);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.media-item-large {
    padding: 40px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.media-item-large .media-logo {
    font-size: 24px;
    color: var(--champagne-gold);
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.media-item-large p {
    color: var(--ivory-white);
    font-style: italic;
    line-height: 1.8;
}

.sustainability-intro {
    padding: 120px 0;
    background: var(--secondary-black);
}

.sustainability-goals {
    padding: 120px 0;
    background: var(--primary-black);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.goal-item {
    padding: 40px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.goal-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.goal-item h3 {
    color: var(--champagne-gold);
    margin-bottom: 15px;
    font-size: 20px;
}

.goal-item p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.goal-progress {
    margin-top: 15px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: var(--champagne-gold);
    border-radius: 3px;
    transition: width 1s ease;
}

.goal-progress span {
    font-size: 12px;
    color: var(--champagne-gold);
}

.sustainability-actions {
    padding: 120px 0;
    background: var(--secondary-black);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.action-item {
    padding: 40px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.action-item h3 {
    color: var(--champagne-gold);
    margin-bottom: 15px;
    font-size: 20px;
}

.action-item p {
    color: var(--medium-gray);
    line-height: 1.8;
}

.sustainability-report {
    padding: 120px 0;
    background: var(--primary-black);
}

.report-banner {
    text-align: center;
    padding: 60px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.report-banner h2 {
    font-size: 32px;
    color: var(--champagne-gold);
    margin-bottom: 15px;
}

.report-banner p {
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.report-downloads {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.report-downloads .btn-primary,
.report-downloads .btn-secondary {
    padding: 14px 32px;
}

.service-overview {
    padding: 80px 0;
    background: var(--primary-black);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    display: block;
    text-align: center;
    padding: 40px 20px;
    background: var(--secondary-black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--champagne-gold);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--champagne-gold);
    margin-bottom: 15px;
    font-size: 18px;
}

.service-card p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-link {
    color: var(--champagne-gold);
    font-size: 14px;
    letter-spacing: 1px;
}

.service-warranty {
    padding: 120px 0;
    background: var(--secondary-black);
}

.warranty-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.warranty-item {
    padding: 40px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.warranty-item h3 {
    color: var(--champagne-gold);
    margin-bottom: 15px;
    font-size: 18px;
}

.warranty-item p {
    color: var(--medium-gray);
    line-height: 1.8;
}

.service-faq {
    padding: 120px 0;
    background: var(--primary-black);
}

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

.faq-item {
    padding: 30px;
    margin-bottom: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-item h3 {
    color: var(--champagne-gold);
    margin-bottom: 15px;
    font-size: 16px;
}

.faq-item p {
    color: var(--medium-gray);
    line-height: 1.8;
}

.service-contact {
    padding: 120px 0;
    background: var(--secondary-black);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.contact-item {
    padding: 40px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-item h3 {
    color: var(--champagne-gold);
    margin-bottom: 15px;
}

.contact-value {
    font-size: 24px;
    color: var(--ivory-white);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--medium-gray);
    font-size: 14px;
}

.maintenance-intro {
    padding: 120px 0;
    background: var(--secondary-black);
}

.maintenance-services {
    padding: 120px 0;
    background: var(--primary-black);
}

.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.maintenance-item {
    padding: 40px;
    background: var(--secondary-black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    position: relative;
}

.maintenance-item.featured {
    border-color: var(--champagne-gold);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--champagne-gold);
    color: var(--primary-black);
    padding: 4px 16px;
    font-size: 12px;
    letter-spacing: 1px;
}

.maintenance-item h3 {
    font-size: 22px;
    color: var(--champagne-gold);
    margin-bottom: 15px;
}

.maintenance-item .price {
    font-size: 28px;
    color: var(--ivory-white);
    margin-bottom: 30px;
}

.maintenance-item ul {
    list-style: none;
    margin-bottom: 30px;
}

.maintenance-item ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--medium-gray);
    font-size: 14px;
}

.maintenance-process {
    padding: 120px 0;
    background: var(--secondary-black);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.timeline-step {
    text-align: center;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.step-num {
    font-size: 36px;
    color: var(--champagne-gold);
    font-weight: 300;
    margin-bottom: 15px;
}

.timeline-step h3 {
    color: var(--ivory-white);
    margin-bottom: 10px;
    font-size: 16px;
}

.timeline-step p {
    color: var(--medium-gray);
    font-size: 14px;
}

.maintenance-tips {
    padding: 120px 0;
    background: var(--primary-black);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tip-item {
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.tip-item h3 {
    color: var(--champagne-gold);
    margin-bottom: 10px;
    font-size: 16px;
}

.tip-item p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.8;
}

.verify-section {
    padding: 80px 0 120px;
    background: var(--primary-black);
}

.verify-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background: var(--secondary-black);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.verify-box h2 {
    font-size: 28px;
    color: var(--champagne-gold);
    margin-bottom: 15px;
}

.verify-box > p {
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.verify-form .form-group {
    margin-bottom: 20px;
}

.verify-form input {
    width: 100%;
    padding: 16px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--ivory-white);
    font-size: 16px;
    font-family: 'Georgia', serif;
    letter-spacing: 2px;
    text-align: center;
}

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

.verify-result {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.verify-result.success {
    border-color: #4CAF50;
    color: #4CAF50;
}

.verify-result.error {
    border-color: #f44336;
    color: #f44336;
}

.verify-tips {
    max-width: 600px;
    margin: 60px auto 0;
    text-align: center;
}

.verify-tips h3 {
    color: var(--champagne-gold);
    margin-bottom: 30px;
}

.verify-tips .tips-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.verify-tips .tip-item {
    flex: 1;
}

.verify-tips .tip-icon {
    width: 40px;
    height: 40px;
    background: var(--champagne-gold);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
}

.verify-security {
    padding: 120px 0;
    background: var(--secondary-black);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.security-item {
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.security-item h3 {
    color: var(--champagne-gold);
    margin-bottom: 15px;
    font-size: 16px;
}

.security-item p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.8;
}

.verify-contact {
    padding: 120px 0;
    background: var(--primary-black);
}

.contact-banner {
    text-align: center;
    padding: 60px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-banner h2 {
    color: var(--champagne-gold);
    margin-bottom: 15px;
}

.contact-banner p {
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.stores-section {
    padding: 80px 0 120px;
    background: var(--primary-black);
}

.stores-search {
    margin-bottom: 60px;
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto 30px;
}

.search-box input {
    flex: 1;
    padding: 16px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-right: none;
    color: var(--ivory-white);
    font-size: 14px;
    font-family: 'Georgia', serif;
}

.search-box input:focus {
    outline: none;
    border-color: var(--champagne-gold);
}

.search-btn {
    padding: 16px 32px;
    background: var(--champagne-gold);
    border: 1px solid var(--champagne-gold);
    color: var(--primary-black);
    font-size: 14px;
    cursor: pointer;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}

.city-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.store-card {
    background: var(--secondary-black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.store-card:hover {
    border-color: var(--champagne-gold);
    transform: translateY(-5px);
}

.store-info {
    padding: 30px;
}

.store-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--champagne-gold);
    color: var(--primary-black);
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.store-info h3 {
    font-size: 20px;
    color: var(--ivory-white);
    margin-bottom: 10px;
}

.store-details p {
    color: var(--medium-gray);
    font-size: 14px;
    margin-bottom: 8px;
}

.store-details strong {
    color: var(--ivory-white);
}

.store-services {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.store-services span {
    font-size: 11px;
    color: var(--champagne-gold);
    padding: 4px 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.store-card .btn-primary {
    width: 100%;
    display: block;
    padding: 12px;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
}

.stores-map {
    padding: 120px 0;
    background: var(--secondary-black);
}

.map-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.appointment-section {
    padding: 80px 0 120px;
    background: var(--primary-black);
}

.appointment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.appointment-info h2 {
    font-size: 32px;
    color: var(--champagne-gold);
    margin-bottom: 20px;
}

.appointment-info > p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-list {
    list-style: none;
    margin-bottom: 40px;
}

.service-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--ivory-white);
    font-size: 14px;
}

.service-list li::before {
    content: '✓ ';
    color: var(--champagne-gold);
    margin-right: 10px;
}

.appointment-notice {
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.appointment-notice h3 {
    color: var(--champagne-gold);
    margin-bottom: 10px;
    font-size: 16px;
}

.appointment-notice p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.8;
}

.appointment-form-wrapper {
    background: var(--secondary-black);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px;
}

.appointment-form h3 {
    color: var(--champagne-gold);
    margin-bottom: 30px;
    font-size: 20px;
}

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

.appointment-form .form-group {
    margin-bottom: 20px;
}

.appointment-form label {
    display: block;
    color: var(--ivory-white);
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 14px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--ivory-white);
    font-size: 14px;
    font-family: 'Georgia', serif;
}

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

.appointment-form select {
    cursor: pointer;
}

.appointment-form select option {
    background: var(--secondary-black);
    color: var(--ivory-white);
}

.appointment-form textarea {
    resize: vertical;
    min-height: 80px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-checkbox input {
    width: auto;
}

.form-checkbox label {
    margin-bottom: 0;
    font-size: 12px;
    color: var(--medium-gray);
}

.appointment-result {
    margin-top: 20px;
    padding: 20px;
    text-align: center;
}

.appointment-benefits {
    padding: 120px 0;
    background: var(--secondary-black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-item h3 {
    color: var(--champagne-gold);
    margin-bottom: 15px;
    font-size: 16px;
}

.benefit-item p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.8;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes bounceStep {
    0% {
        transform: translateX(-50%) translateY(0);
    }
    15% {
        transform: translateX(-50%) translateY(-18px);
    }
    30% {
        transform: translateX(-50%) translateY(0);
    }
    45% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(0);
    }
    75% {
        transform: translateX(-50%) translateY(-6px);
    }
    90%, 100% {
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scrollDownStep {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    20% {
        opacity: 1;
        transform: translateX(-50%) translateY(4px);
    }
    25% {
        opacity: 1;
        transform: translateX(-50%) translateY(4px);
    }
    45% {
        opacity: 1;
        transform: translateX(-50%) translateY(9px);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(9px);
    }
    70% {
        opacity: 0.8;
        transform: translateX(-50%) translateY(14px);
    }
    75% {
        opacity: 0.6;
        transform: translateX(-50%) translateY(14px);
    }
    95% {
        opacity: 0;
        transform: translateX(-50%) translateY(18px);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(18px);
    }
}

@keyframes scrollDownStep2 {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-4px);
    }
    15% {
        opacity: 0;
        transform: translateX(-50%) translateY(-4px);
    }
    35% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(2px);
    }
    40% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(2px);
    }
    60% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(8px);
    }
    65% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(8px);
    }
    85% {
        opacity: 0;
        transform: translateX(-50%) translateY(14px);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(14px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

* {
    cursor: none !important;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #ff0000;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1),
                height 0.3s cubic-bezier(0.23, 1, 0.32, 1),
                background 0.3s ease,
                transform 0.15s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    animation: rainbowBorder 3s linear infinite;
}

@keyframes rainbowBorder {
    0%   { border-color: #ff0000; }
    16%  { border-color: #ff8800; }
    33%  { border-color: #ffff00; }
    50%  { border-color: #00ff00; }
    66%  { border-color: #0088ff; }
    83%  { border-color: #8800ff; }
    100% { border-color: #ff0000; }
}

.custom-cursor.hover {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

.custom-cursor.click {
    transform: translate(-50%, -50%) scale(0.6);
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    animation: rainbowDot 3s linear infinite;
}

@keyframes rainbowDot {
    0%   { background: #ff0000; }
    16%  { background: #ff8800; }
    33%  { background: #ffff00; }
    50%  { background: #00ff00; }
    66%  { background: #0088ff; }
    83%  { background: #8800ff; }
    100% { background: #ff0000; }
}

.cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    animation: trailFade 0.8s ease-out forwards;
}

@keyframes trailFade {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.1);
    }
}

.mouse-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    animation: rainbowGlow 6s linear infinite;
}

@keyframes rainbowGlow {
    0%   { background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, rgba(255, 0, 0, 0.04) 30%, transparent 70%); }
    16%  { background: radial-gradient(circle, rgba(255, 136, 0, 0.1) 0%, rgba(255, 136, 0, 0.04) 30%, transparent 70%); }
    33%  { background: radial-gradient(circle, rgba(255, 255, 0, 0.1) 0%, rgba(255, 255, 0, 0.04) 30%, transparent 70%); }
    50%  { background: radial-gradient(circle, rgba(0, 255, 0, 0.1) 0%, rgba(0, 255, 0, 0.04) 30%, transparent 70%); }
    66%  { background: radial-gradient(circle, rgba(0, 136, 255, 0.1) 0%, rgba(0, 136, 255, 0.04) 30%, transparent 70%); }
    83%  { background: radial-gradient(circle, rgba(136, 0, 255, 0.1) 0%, rgba(136, 0, 255, 0.04) 30%, transparent 70%); }
    100% { background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, rgba(255, 0, 0, 0.04) 30%, transparent 70%); }
}

.click-ripple {
    position: fixed;
    border: 2px solid #ff0000;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    transform: translate(-50%, -50%) scale(0);
    animation: rippleExpand 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards, rainbowRipple 0.8s linear forwards;
}

@keyframes rippleExpand {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

@keyframes rainbowRipple {
    0%   { border-color: #ff0000; }
    20%  { border-color: #ff8800; }
    40%  { border-color: #ffff00; }
    60%  { border-color: #00ff00; }
    80%  { border-color: #0088ff; }
    100% { border-color: #8800ff; }
}

.click-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99997;
    animation: particleBurst 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes particleBurst {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--px), var(--py)) scale(0);
    }
}

.collection-card,
.product-card,
.news-card,
.store-card,
.service-card {
    position: relative;
    overflow: hidden;
}

.card-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        115deg,
        transparent 20%,
        rgba(212, 175, 55, 0.08) 40%,
        rgba(212, 175, 55, 0.15) 50%,
        rgba(212, 175, 55, 0.08) 60%,
        transparent 80%
    );
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection-card:hover .card-shine,
.product-card:hover .card-shine,
.news-card:hover .card-shine {
    opacity: 1;
}

.video-showcase {
    padding: 120px 0;
    background: var(--primary-black);
    position: relative;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.video-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.video-card {
    background: var(--secondary-black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
}

.video-card:hover {
    border-color: var(--champagne-gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.video-card-large {
    grid-row: span 2;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: var(--dark-gray);
    overflow: hidden;
}

.video-card-large .video-wrapper {
    padding-top: 66.67%;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--secondary-black) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-fallback:hover {
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--dark-gray) 100%);
}

.video-fallback:hover .play-btn {
    transform: scale(1.1);
}

.play-btn {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.play-btn svg {
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
}

.video-fallback p {
    color: var(--medium-gray);
    font-size: 14px;
    letter-spacing: 1px;
}

.video-info {
    padding: 25px 30px;
}

.video-info h3 {
    font-size: 18px;
    color: var(--champagne-gold);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.video-info p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.6;
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.video-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--champagne-gold);
    font-size: 11px;
    letter-spacing: 1px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 2px;
    text-transform: uppercase;
}

.video-duration {
    font-size: 12px;
    color: var(--medium-gray);
    letter-spacing: 1px;
    font-variant-numeric: tabular-nums;
}

.video-desc-main {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.video-desc-detail {
    color: #888;
    font-size: 13px;
    line-height: 1.7;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .video-card-large {
        grid-row: span 1;
    }
}

.collection-card:hover,
.product-card:hover {
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.3),
                0 0 40px rgba(212, 175, 55, 0.1);
}

.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4),
                0 0 60px rgba(212, 175, 55, 0.15);
    letter-spacing: 4px;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.cta-button:hover::after {
    opacity: 1;
}

.nav-menu a {
    position: relative;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--champagne-gold);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

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

.nav-menu a:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.stat-item:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2),
                0 0 30px rgba(212, 175, 55, 0.1);
    border-color: var(--champagne-gold);
}

.craft-item:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--champagne-gold);
}

.craft-item:hover .craft-icon {
    animation: iconPulse 0.6s ease;
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3) rotate(10deg); }
    100% { transform: scale(1); }
}

.filter-btn:hover,
.filter-btn.active {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.filter-btn {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.social-icon:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.hero-content {
    animation: heroEntry 2s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes heroEntry {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.section-header {
    animation: sectionReveal 1s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes sectionReveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.title-decoration {
    animation: lineExpand 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
}

@keyframes lineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 60px;
        opacity: 1;
    }
}

.hero-title {
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
    }
    100% {
        text-shadow: 0 0 60px rgba(212, 175, 55, 0.5),
                     0 0 100px rgba(212, 175, 55, 0.2);
    }
}

.testimonial-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--champagne-gold);
}

.media-item:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.btn-detail:hover,
.btn-primary:hover,
.btn-secondary:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.btn-detail,
.btn-primary,
.btn-secondary {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    transition: all 0.3s ease;
}

.logo {
    transition: all 0.3s ease;
}

.value-item:hover,
.goal-item:hover,
.cert-item:hover,
.process-step:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--champagne-gold);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.news-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.store-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.pagination-btn:hover,
.pagination-btn.active {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.pagination-btn {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.search-btn {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.close-modal:hover {
    transform: rotate(180deg) scale(1.2);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.progress-fill {
    animation: progressGlow 2s ease-in-out infinite alternate;
}

@keyframes progressGlow {
    0% { box-shadow: 0 0 5px rgba(212, 175, 55, 0.3); }
    100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.6); }
}

@media (max-width: 1200px) {
    .collection-grid,
    .product-grid,
    .testimonial-grid,
    .news-grid,
    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .craft-grid,
    .values-grid,
    .cert-grid,
    .security-grid,
    .service-grid,
    .benefits-grid,
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .goals-grid,
    .actions-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .maintenance-grid {
        grid-template-columns: 1fr;
    }
    
    .maintenance-item.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .story-content,
    .intro-content,
    .heritage-content,
    .craft-detail-item,
    .craft-detail-item.reverse,
    .appointment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-stats,
    .collection-grid,
    .product-grid,
    .testimonial-grid,
    .craft-grid,
    .news-grid,
    .stores-grid,
    .values-grid,
    .cert-grid,
    .security-grid,
    .service-grid,
    .benefits-grid,
    .tips-grid,
    .series-features,
    .warranty-content,
    .contact-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }
    
    .media-logos {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        align-items: center;
    }

    .timeline-item:nth-child(odd).timeline-hidden,
    .timeline-item:nth-child(even).timeline-hidden {
        transform: translateY(60px);
    }

    .timeline-year-hidden {
        transform: scale(0.5);
    }

    .timeline-year-visible {
        transform: scale(1);
    }

    .story-timeline::before {
        display: none;
    }

    .timeline-year {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 20px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-connector {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .craft-specs {
        grid-template-columns: 1fr;
    }
    
    .filter-tabs,
    .news-filter,
    .city-filter {
        flex-wrap: wrap;
    }
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-black);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: loaderFadeOut 0.8s ease 1.5s forwards;
}

.loader-logo {
    font-size: 48px;
    color: var(--champagne-gold);
    letter-spacing: 8px;
    font-family: 'Times New Roman', serif;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(212, 175, 55, 0.2);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--champagne-gold);
    animation: loaderSlide 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes loaderSlide {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes loaderFadeOut {
    0% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: ambientShift 10s ease-in-out infinite alternate;
}

@keyframes ambientShift {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.collection-card::before,
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    transition: border-color 0.4s ease;
    z-index: 5;
    pointer-events: none;
}

.collection-card:hover::before,
.product-card:hover::before {
    border-color: var(--champagne-gold);
    animation: borderGlow 1.5s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.1); }
    100% { box-shadow: inset 0 0 40px rgba(212, 175, 55, 0.2); }
}

.hero-watch-container img {
    animation: watchFloat 4s ease-in-out infinite;
}

@keyframes watchFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(1deg); }
    75% { transform: translateY(-8px) rotate(-1deg); }
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--champagne-gold);
    transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-header:hover .section-title::after {
    width: 80%;
}

.footer-section ul li a {
    position: relative;
    transition: all 0.3s ease;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--champagne-gold);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover::before {
    width: 10px;
}

.footer-section ul li a:hover {
    padding-left: 20px;
    color: var(--champagne-gold);
}

.testimonial-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--champagne-gold), transparent);
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-item:hover::after {
    width: 100%;
}

.news-card .news-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-card:hover .news-image::after {
    opacity: 1;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.card-content h3 {
    transition: all 0.3s ease;
}

.collection-card:hover .card-content h3,
.product-card:hover .card-content h3 {
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.scroll-indicator span {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4),
                0 0 30px rgba(212, 175, 55, 0.2);
    animation: indicatorPulse 2.5s infinite;
}

.scroll-indicator span::after {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.9);
}

@keyframes indicatorPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.4),
                    0 0 30px rgba(212, 175, 55, 0.2);
        border-color: var(--champagne-gold);
    }
    50% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.7),
                    0 0 50px rgba(212, 175, 55, 0.4);
        border-color: var(--light-gold);
    }
}

/* ========== 联系我们页面样式 ========== */

.contact-intro {
    padding: 120px 0 80px;
    background: var(--primary-black);
}

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

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 32px;
    color: var(--champagne-gold);
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding: 25px;
    background: var(--secondary-black);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--champagne-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    color: var(--champagne-gold);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.contact-details p {
    font-size: 15px;
    color: var(--ivory-white);
    margin-bottom: 4px;
}

.contact-hours {
    font-size: 13px;
    color: var(--medium-gray);
}

.contact-form-wrapper {
    background: var(--secondary-black);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    color: var(--ivory-white);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.contact-form .required {
    color: #e74c3c;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--primary-black);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    color: var(--ivory-white);
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--champagne-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

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

.contact-form select {
    cursor: pointer;
}

.contact-form select option {
    background: var(--primary-black);
    color: var(--ivory-white);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

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

.form-checkbox label {
    font-size: 13px;
    color: var(--medium-gray);
    margin: 0;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--champagne-gold);
    color: var(--primary-black);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.contact-services {
    padding: 80px 0;
    background: var(--secondary-black);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--primary-black);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--champagne-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.service-card .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    color: var(--champagne-gold);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.8;
}

.contact-social {
    padding: 80px 0;
    background: var(--primary-black);
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.social-link-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--secondary-black);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-card:hover {
    border-color: var(--champagne-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.social-icon-large {
    font-size: 56px;
    margin-bottom: 20px;
}

.social-link-card h3 {
    font-size: 20px;
    color: var(--champagne-gold);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.social-link-card p {
    font-size: 15px;
    color: var(--ivory-white);
    margin-bottom: 8px;
}

.social-link-card span {
    font-size: 13px;
    color: var(--medium-gray);
}

.contact-faq {
    padding: 80px 0;
    background: var(--secondary-black);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    padding: 30px;
    background: var(--primary-black);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--champagne-gold);
}

.faq-item h3 {
    font-size: 18px;
    color: var(--champagne-gold);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.faq-item p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.8;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-cards,
    .social-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-intro {
        padding: 100px 0 60px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-cards,
    .social-links-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}
