*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #f5f5f5;
    background-color: #1a1a1a;
    overflow-x: hidden;
    animation: pageLoad 0.5s ease-in-out;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar-brand a {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5f5f5;
    text-decoration: none;
    letter-spacing: 2px;
}

.navbar-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar-menu a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #f5f5f5;
    transition: width 0.3s ease;
}

.navbar-menu a:hover {
    color: #c8c8c8;
}

.navbar-menu a:hover::after {
    width: 100%;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #f5f5f5;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.4) 0%, rgba(26, 26, 26, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: #f5f5f5;
    letter-spacing: 2px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    color: #d1d1d1;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.collection {
    padding: 6rem 0;
    background-color: #1a1a1a;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.collection-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.4s ease;
}

.collection-item:hover {
    transform: translateY(-8px);
}

.collection-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.collection-item:hover img {
    transform: scale(1.08);
}

.collection-item h3 {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    color: #f5f5f5;
    background-color: rgba(26, 26, 26, 0.8);
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0;
}

.gallery {
    padding: 6rem 0;
    background-color: #151515;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.philosophy {
    padding: 6rem 0;
    background-color: #1a1a1a;
}

.philosophy-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.philosophy-image-single {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.philosophy-image-single img {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.6s ease;
}

.philosophy-image-single:hover img {
    transform: scale(1.02);
}

.philosophy-content {
    text-align: left;
}

.philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.philosophy-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #f5f5f5;
}

.feature-item p {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 0;
    line-height: 1.6;
}

.size-guide {
    padding: 6rem 0;
    background-color: #151515;
}

.size-table {
    margin-top: 3rem;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
}

th, td {
    padding: 1.2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #2a2a2a;
    font-size: 0.95rem;
}

th {
    background-color: #222;
    font-weight: 600;
    color: #f5f5f5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

td {
    color: #d1d1d1;
}

tr:hover td {
    background-color: rgba(255, 255, 255, 0.03);
}

.shipping {
    padding: 6rem 0;
    background-color: #1a1a1a;
}

.shipping-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.shipping-item {
    background-color: #151515;
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid #2a2a2a;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.shipping-item:hover {
    transform: translateY(-5px);
    border-color: #3a3a3a;
}

.shipping-item h3 {
    margin-bottom: 1rem;
    color: #f5f5f5;
}

.shipping-item p {
    color: #b0b0b0;
    margin-bottom: 0;
}

.contact {
    padding: 6rem 0;
    background-color: #151515;
    text-align: center;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-content > p {
    color: #b0b0b0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #f5f5f5;
}

.contact-item p {
    color: #b0b0b0;
    margin-bottom: 0;
}

.footer {
    background-color: #111;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.footer-brand p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-links h3,
.footer-social h3 {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    text-align: left;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f5f5f5;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.social-link:hover {
    color: #f5f5f5;
}

.social-link svg {
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .philosophy-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .philosophy-content {
        text-align: center;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 5rem 2rem 2rem;
        transition: right 0.4s ease;
        z-index: 999;
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-menu ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .navbar-menu a {
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-grid,
    .shipping-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .navbar-inner {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .collection-item img {
        height: 300px;
    }

    .gallery-item img {
        height: 250px;
    }

    .container {
        padding: 0 1rem;
    }

    .navbar-inner {
        padding: 0 1rem;
    }
}