@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&display=swap');

:root {
    --color-primary: #1a1a1a;
    --color-accent: #cb0056;
    --color-accent-light: #e8006a;
    --color-accent-pale: #fff0f5;
    --color-light: #f9f9f9;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-border: #e5e5e5;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', Arial, sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(203, 0, 86, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--color-accent);
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-list a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--color-accent);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}


.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--color-white);
    padding-top: 80px;
}

.hero-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent-pale) 0%, transparent 70%);
    pointer-events: none;
}

.hero-circles {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    pointer-events: none;
}

.hero-circle {
    position: absolute;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    opacity: 0.15;
}

.hero-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
    animation: pulse-circle 8s ease-in-out infinite;
}

.hero-circle:nth-child(2) {
    width: 600px;
    height: 600px;
    top: -300px;
    left: -300px;
    animation: pulse-circle 8s ease-in-out infinite 1s;
}

.hero-circle:nth-child(3) {
    width: 800px;
    height: 800px;
    top: -400px;
    left: -400px;
    animation: pulse-circle 8s ease-in-out infinite 2s;
}

@keyframes pulse-circle {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.05); opacity: 0.25; }
}

.hero-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--color-primary);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-accent-pale);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--color-primary);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title em {
    font-style: italic;
    color: var(--color-accent);
}

.hero-description {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 500px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta {
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-image img {
    max-width: 450px;
    border-radius: 50%;
    box-shadow: 0 30px 80px rgba(203, 0, 86, 0.15);
}

.hero-ring {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

.hero-ring::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: orbit 15s linear infinite;
}

@keyframes orbit {
    from { transform: translateX(-50%) rotate(0deg) translateY(-250px) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg) translateY(-250px) rotate(-360deg); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.about-product {
    padding: 120px 0;
    background-color: var(--color-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.about-image-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--color-accent);
    bottom: -30px;
    right: -30px;
    z-index: -1;
    opacity: 0.3;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.about-features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item i {
    font-size: 24px;
    color: var(--color-accent);
    margin-top: 3px;
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--color-primary);
}

.feature-item p {
    font-size: 13px;
    margin-bottom: 0;
}


.craftsmanship {
    padding: 120px 0;
    background-color: var(--color-white);
}

.craft-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.craft-header p {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.craft-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.craft-step {
    text-align: center;
    padding: 40px 30px;
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.craft-step:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 50px rgba(203, 0, 86, 0.1);
}

.craft-step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-accent);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.craft-step i {
    font-size: 48px;
    color: var(--color-accent);
    margin-bottom: 25px;
    display: block;
}

.craft-step h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.craft-step p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.gallery {
    padding: 120px 0;
    background: var(--color-light);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(203, 0, 86, 0.8) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.specifications {
    padding: 120px 0;
    background-color: var(--color-white);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.specs-content .section-title {
    text-align: left;
}

.specs-content .section-subtitle {
    text-align: left;
}

.specs-list {
    margin-top: 40px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
}

.spec-value {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-primary);
}

.specs-image {
    position: relative;
}

.specs-image img {
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.specs-price-tag {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: 0 15px 40px rgba(203, 0, 86, 0.3);
}

.specs-price-tag span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.specs-price-tag strong {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
}

.cta-section {
    padding: 150px 0;
    background: var(--color-accent-pale);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    opacity: 0.2;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    bottom: -150px;
    left: -50px;
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content .section-title {
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}


footer {
    background-color: var(--color-light);
    color: var(--color-text);
    padding: 80px 0 30px;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.3;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.footer-brand .logo-text span {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--color-text-light);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-top: 20px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--color-accent);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-text-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-contact p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--color-accent);
    width: 20px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-text-light);
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--color-text-light);
    opacity: 0.7;
    max-width: 600px;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .hero-content {
        gap: 50px;
    }
    
    .hero-image img {
        max-width: 380px;
    }
    
    .hero-ring {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 992px) {
    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list.active {
        transform: translateY(0);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin: 0 auto 40px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-width: 320px;
    }
    
    .hero-ring {
        width: 380px;
        height: 380px;
    }
    
    .hero-decoration {
        width: 100%;
        height: 50%;
        top: 0;
    }
    
    .about-grid,
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image-accent {
        display: none;
    }
    
    .craft-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .specs-content .section-title,
    .specs-content .section-subtitle {
        text-align: center;
    }
    
    .specs-price-tag {
        bottom: -20px;
        right: 20px;
        width: 120px;
        height: 120px;
    }
    
    .specs-price-tag strong {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-price {
        font-size: 2rem;
    }
    
    .hero-image img {
        max-width: 260px;
    }
    
    .hero-ring {
        width: 320px;
        height: 320px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:first-child {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-section {
        padding: 100px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 6px 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .btn {
        padding: 12px 28px;
        font-size: 12px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
}
