/* DESIGN SYSTEM - Luxury Aesthetic Override */

/* Typography & Spacing */
body {
    background: #FFFFFF;
    color: #1A1714;
    line-height: 1.6;
    letter-spacing: -0.3px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    letter-spacing: -0.5px;
}

/* Layout Containers */
.hero,
.about,
.store-preview,
.stats,
.features,
.materials,
.faqs,
.cta-final {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 60px;
    padding-right: 60px;
}

.navbar {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid #EDE8DF;
    padding: 18px 60px;
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(26, 23, 20, 0.05);
    padding: 14px 60px;
}

.logo {
    letter-spacing: -0.04em;
    font-weight: 600;
}

.hamburger {
    display: none;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #2A2725;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-links a {
    font-weight: 500;
    letter-spacing: 0.15px;
}

.hero {
    position: relative;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(212, 196, 176, 0.25), transparent 60%);
    filter: blur(60px);
    z-index: 0;
}

.hero::before { top: 40px; left: -120px; }
.hero::after { bottom: -60px; right: -140px; }

.hero-content {
    text-align: center;
    gap: 18px;
    position: relative;
    z-index: 2;
    animation: fadeInHero 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes fadeInHero {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #8B8680;
    margin-bottom: 12px;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
    opacity: 0;
}

.hero-title {
    font-size: clamp(58px, 9vw, 110px);
    line-height: 1.02;
    letter-spacing: -1.8px;
    margin-bottom: 18px;
}

.hero-title span {
    display: block;
    animation: slideUpFade 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.hero-title span:nth-child(1) { animation-delay: 0.3s; }
.hero-title span:nth-child(2) { animation-delay: 0.45s; }
.hero-title span:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 17px;
    color: #5A5550;
    max-width: 720px;
    margin: 0 auto 30px;
    line-height: 1.8;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.75s forwards;
    opacity: 0;
}

.hero-animated-balls {
    gap: 18px;
    margin-bottom: 28px;
}

.hero-ball {
    width: 110px;
    height: 110px;
    box-shadow: 0 20px 50px rgba(42, 39, 37, 0.12);
    animation: floatBallDeluxe 6s ease-in-out infinite, fadeInScale 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.hero-ball:nth-child(1) { animation-delay: 0s, 0.2s; }
.hero-ball:nth-child(2) { animation-delay: 0.7s, 0.35s; }
.hero-ball:nth-child(3) { animation-delay: 1.4s, 0.5s; }

@keyframes floatBallDeluxe {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-18px) scale(1.02);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-product {
    position: relative;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 25px 80px rgba(26, 23, 20, 0.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 213, 199, 0.8);
    animation: fadeInRight 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-product:hover {
    transform: translateY(-8px) scale(1.02);
}

.hero-product img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-product:hover img {
    transform: scale(1.05);
}

/* Section styling - Clean, minimal, luxury */
.section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #8B8680;
    margin-bottom: 24px;
    font-weight: 500;
    opacity: 1;
}

.section-label.animate-in {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.section-title {
    font-size: clamp(48px, 7vw, 100px);
    line-height: 1.1;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: -1.5px;
    color: #1A1714;
}

.section-title span {
    display: block;
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.section-title span:nth-child(1) { animation-delay: 0.1s; }
.section-title span:nth-child(2) { animation-delay: 0.2s; }
.section-title span:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    padding: 120px 60px;
    text-align: center;
    background: #FFFFFF;
    opacity: 1;
}

.about.animate-in {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.about-quote {
    font-size: clamp(18px, 3vw, 28px);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    color: #2A2725;
    font-weight: 300;
    letter-spacing: -0.3px;
}

/* Stats Section */
.stats {
    padding: 120px 60px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9F7F3 100%);
    text-align: center;
    opacity: 1;
}

.stats.animate-in {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.stats-quote {
    font-size: clamp(16px, 2vw, 24px);
    line-height: 1.8;
    max-width: 800px;
    margin: 30px auto;
    color: #2A2725;
    font-weight: 300;
}

/* Features Section */
.features {
    padding: 120px 60px;
    background: #FFFFFF;
    text-align: center;
    opacity: 1;
}

.features.animate-in {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.features-subtitle {
    font-size: 16px;
    color: #8B8680;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
    font-weight: 300;
}

/* CTA Button - Refined */
.cta-button {
    display: inline-block;
    padding: 14px 48px;
    background: #2A2725;
    color: #F5F1E8;
    text-decoration: none;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    border: 2px solid #2A2725;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
    opacity: 0;
}

.cta-button:hover {
    background: transparent;
    color: #2A2725;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(42, 39, 37, 0.15);
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid #E0D5C7;
    color: #2A2725;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
    opacity: 0;
}

.view-all:hover {
    background: #F9F7F3;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(42, 39, 37, 0.08);
    border-color: #2A2725;
}

/* Material Cards */
.material-card {
    padding: 60px 40px;
    background: #F9F7F3;
    border-radius: 16px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.material-card:hover {
    background: #F5F1E8;
    transform: translateY(-8px);
}

.material-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #8B8680;
    margin-bottom: 12px;
}

.material-title {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.material-description {
    font-size: 14px;
    line-height: 1.8;
    color: #5A5550;
    font-weight: 300;
}

.material-badge {
    display: inline-block;
    font-size: 15px;
    padding: 12px 24px;
    background: #2A2725;
    color: #FFFFFF;
    border-radius: 24px;
    margin: 8px 4px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 4px 12px rgba(42, 39, 37, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.material-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(42, 39, 37, 0.25);
}

.store-preview {
    padding-top: 140px;
    padding-bottom: 120px;
    text-align: center;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9F7F3 100%);
}

.products-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.materials {
    padding: 140px 60px;
    background: linear-gradient(180deg, #F9F7F3 0%, #FFFFFF 100%);
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.material-content {
    margin-bottom: 24px;
}

.material-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    align-items: center;
}

.material-image-container {
    overflow: hidden;
    border-radius: 12px;
    background: #FFFFFF;
    box-shadow: 0 18px 40px rgba(26, 23, 20, 0.08);
}

.material-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* FAQ Section */
.faqs {
    padding: 120px 60px;
    background: #FFFFFF;
}

.faqs-subtitle {
    font-size: 16px;
    color: #8B8680;
    max-width: 700px;
    margin: 30px auto 60px;
    line-height: 1.8;
    font-weight: 300;
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid #E0D5C7;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    color: #2A2725;
    transition: color 0.3s ease;
    padding: 0;
}

.faq-question:hover {
    color: #8B8680;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
    margin-top: 0;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.8;
    color: #5A5550;
    font-weight: 300;
    margin-top: 16px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
}

/* Product Cards */
.product-card {
    position: relative;
    text-decoration: none;
    color: inherit;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-12px);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 24px;
    background: #F9F7F3;
    aspect-ratio: 3/4;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.product-name {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: -0.3px;
}

.product-brand {
    font-size: 12px;
    color: #8B8680;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-price {
    font-size: 18px;
    font-weight: 500;
    color: #2A2725;
}

/* Carousel */
.carousel {
    padding: 60px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9F7F3 100%);
    margin: 60px 0;
}

.cta-final {
    text-align: center;
    padding: 140px 60px 160px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F1E8 100%);
}

.cta-images {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 40px auto 24px;
}

.cta-images img {
    width: 180px;
    height: 240px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-images img:hover {
    transform: translateY(-10px) scale(1.05);
}

.cta-tag {
    font-size: 14px;
    color: #8B8680;
    margin-bottom: 24px;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Footer */
.footer {
    background: #1A1714;
    color: #FFFFFF;
    padding: 80px 60px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #F5F1E8;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Global Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Scroll & Transitions */
* {
    scroll-behavior: smooth;
}

/* Blur on scroll effect */
.blur-on-scroll {
    filter: blur(0px);
    transition: filter 0.3s ease;
}

/* Loading animation for images */
img {
    animation: fadeInImage 0.6s ease;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Hover lift effect */
.hover-lift:hover {
    transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
    /* Hide custom cursor on mobile */
    .cursor,
    .cursor-follower {
        display: none !important;
    }

    body {
        cursor: auto;
    }

    /* Touch-friendly tap highlights */
    * {
        -webkit-tap-highlight-color: rgba(212, 196, 176, 0.2);
    }

    .section-label {
        font-size: 10px;
    }
    
    .section-title {
        font-size: clamp(32px, 6vw, 60px);
    }
    
    .footer-content {
        gap: 40px;
    }

    .hero,
    .about,
    .store-preview,
    .stats,
    .features,
    .materials,
    .faqs,
    .cta-final {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 24px 60px;
        min-height: auto;
    }

    .hero::before,
    .hero::after {
        width: 250px;
        height: 250px;
    }

    .hero-animated-balls {
        gap: 12px;
        margin-bottom: 20px;
    }

    .hero-ball {
        width: 70px;
        height: 70px;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 56px);
        line-height: 1.1;
        letter-spacing: -1px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-tag {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .hero-product {
        max-width: 100%;
        margin: 30px auto 0;
        padding: 16px;
    }

    .cta-button {
        padding: 12px 36px;
        font-size: 13px;
    }

    .about {
        padding: 80px 24px;
    }

    .about-quote {
        font-size: clamp(16px, 4vw, 22px);
        line-height: 1.6;
    }

    .store-preview {
        padding: 80px 24px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats {
        padding: 80px 24px;
    }

    .stats-quote {
        font-size: clamp(14px, 3vw, 18px);
    }

    .features {
        padding: 80px 24px;
    }

    .features-subtitle {
        font-size: 14px;
    }

    .materials {
        padding: 80px 24px;
    }

    .materials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .material-card {
        padding: 40px 24px;
    }

    .material-title {
        font-size: 22px;
    }

    .material-description {
        font-size: 13px;
    }

    .material-visual {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faqs {
        padding: 80px 24px;
    }

    .faqs-subtitle {
        font-size: 14px;
    }

    .faq-question {
        font-size: 14px;
        text-align: left;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .cta-final {
        padding: 80px 24px 100px;
    }

    .cta-images {
        flex-direction: row;
        gap: 10px;
        margin: 30px auto 20px;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 4px;
    }

    .cta-images img {
        width: 140px;
        height: 180px;
        flex-shrink: 0;
    }

    .cta-tag {
        font-size: 12px;
    }

    .navbar {
        padding: 14px 24px;
    }

    .nav-content {
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        padding: 40px 24px;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-top: 1px solid #EDE8DF;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        padding: 16px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(224, 213, 199, 0.3);
    }

    .nav-links a::after {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger span {
        width: 24px;
        height: 2px;
        background: #2A2725;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-7px);
    }

    .footer {
        padding: 60px 24px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .carousel {
        padding: 40px 24px;
    }

    .view-all {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* Tablet Breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        padding: 120px 40px 60px;
    }

    .hero-title {
        font-size: clamp(50px, 8vw, 80px);
    }

    .hero-ball {
        width: 90px;
        height: 90px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .hero,
    .about,
    .store-preview,
    .stats,
    .features,
    .materials,
    .faqs,
    .cta-final {
        padding-left: 40px;
        padding-right: 40px;
    }

    .navbar {
        padding: 16px 40px;
    }
}
