/* =============================================
   RESET
   ============================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
*, *:after, *:before {
    box-sizing: border-box;
}

/* =============================================
   VARIABLES
   ============================================= */
:root {
    --dark:          #0c0c0c;
    --dark-card:     #161616;
    --dark-alt:      #111111;
    --dark-border:   #262626;
    --gold:          #c9a96e;
    --gold-hover:    #b8924a;
    --gold-light:    #e8c98a;
    --text:          #e8e8e0;
    --text-muted:    #888880;
    --bg:            #0c0c0c;
    --bg-alt:        #101010;
    --white:         #ffffff;
    --max-width:     1200px;
    --header-h:      68px;
    --radius:        8px;
}

/* =============================================
   BASE
   ============================================= */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-block;
    background: var(--gold);
    color: #0c0c0c;
    padding: 11px 26px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    transition: background 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}
.btn:hover {
    background: var(--gold-hover);
}
.btn-large {
    padding: 15px 36px;
    font-size: 17px;
}
.btn-gold {
    background: var(--gold);
    color: #0c0c0c;
    font-weight: 800;
    letter-spacing: 0.3px;
}
.btn-gold:hover {
    background: var(--gold-hover);
}
.btn-white {
    background: var(--white);
    color: #0c0c0c;
}
.btn-white:hover {
    background: rgba(255, 255, 255, 0.88);
}
.btn-login {
    background: transparent;
    color: var(--gold-light);
    border: 1.5px solid rgba(201, 169, 110, 0.4);
    padding: 10px 22px;
    font-weight: 600;
}
.btn-login:hover {
    background: rgba(201, 169, 110, 0.08);
    border-color: var(--gold);
}
.btn-signup {
    background: var(--gold);
    color: #0c0c0c;
    padding: 10px 22px;
    font-weight: 700;
}
.btn-signup:hover {
    background: var(--gold-hover);
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #080808;
    height: var(--header-h);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
    width: 100%;
    position: relative;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-shrink: 0;
    text-decoration: none;
}

/* Desktop nav menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
    list-style: none;
}
.nav-menu li a {
    color: rgba(232, 232, 224, 0.7);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: color 0.2s ease, background 0.2s ease;
    display: block;
}
.nav-menu li a:hover {
    color: var(--gold-light);
    background: rgba(201, 169, 110, 0.08);
}

.nav-cta-item {
    display: none;
}

.desktop-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.28s ease;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    background: url("../images/banner.jpg") no-repeat center center;
    background-size: cover;
    background-color: #0c0812;
    color: var(--white);
    padding: 88px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;

    &:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        pointer-events: none;
        z-index: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(24px, 3.8vw, 48px);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 22px;
    color: var(--white);
}
.hero p {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.hero strong {
    color: var(--gold-light);
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
    background: #080808;
    padding: 40px 0;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
.gallery-item {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid var(--dark-border);
    transition: border-color 0.2s ease;
}
.gallery-item:hover {
    border-color: rgba(201, 169, 110, 0.4);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* =============================================
   SECTION BASE
   ============================================= */
section {
    padding: 64px 0;
}

section h2 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 14px;
}

section h3 {
    font-size: clamp(15px, 1.8vw, 20px);
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1.3;
    margin-bottom: 12px;
}

section p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 12px;
}
section p:last-child {
    margin-bottom: 0;
}

section ul {
    margin: 8px 0 14px;
}
section ul li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
}
section ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 12px;
    line-height: 1.9;
}

.section-intro {
    font-size: 17px !important;
    color: rgba(136, 136, 128, 0.9) !important;
    margin-bottom: 32px !important;
}

/* =============================================
   INTRO
   ============================================= */
.intro {
    background: var(--bg-alt);
    border-top: 1px solid var(--dark-border);
}
.intro .container {
    max-width: 820px;
}
.intro p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* =============================================
   COLLECTIONS
   ============================================= */
.collections {
    background: var(--bg);
}
.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 8px;
}
.collection-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 28px 30px;
    border: 1px solid var(--dark-border);
    position: relative;
}
.collection-card--featured {
    border-color: rgba(201, 169, 110, 0.35);
}
.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: #0c0c0c;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
}

/* =============================================
   STYLES
   ============================================= */
.styles {
    background: var(--bg-alt);
}
.styles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 8px 0 28px;
}
.style-item {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 22px 24px;
    border: 1px solid var(--dark-border);
    border-bottom: 2px solid var(--gold);
}
.style-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
}
.style-item p {
    font-size: 14px;
}

/* =============================================
   MATERIALS
   ============================================= */
.materials {
    background: var(--bg);
}
.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
}
.material-block {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 26px;
    border: 1px solid var(--dark-border);
}
.material-block h3 {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--dark-border);
    margin-bottom: 16px;
}

/* =============================================
   MOVEMENTS
   ============================================= */
.movements {
    background: var(--bg-alt);
}
.movements-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 8px 0 28px;
}
.movement-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 22px 18px;
    border: 1px solid var(--dark-border);
    text-align: center;
}
.movement-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
    text-align: center;
}
.movement-card p {
    font-size: 13px;
    text-align: center;
}

/* =============================================
   ACCESSORIES
   ============================================= */
.accessories {
    background: var(--bg);
}
.accessories .container {
    max-width: 820px;
}

/* =============================================
   BRANDS
   ============================================= */
.brands {
    background: var(--bg-alt);
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 8px 0 28px;
}
.brand-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--dark-border);
    border-top: 2px solid var(--gold);
    text-align: center;
}
.brand-card h3 {
    text-align: center;
    font-size: 17px;
    margin-bottom: 10px;
}
.brand-card p {
    font-size: 14px;
    text-align: center;
}

/* =============================================
   WHY US
   ============================================= */
.why-us {
    background: var(--bg);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 8px 0 28px;
}
.trust-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: 16px 20px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
}

/* =============================================
   PRICE RANGE
   ============================================= */
.price-range {
    background: var(--bg-alt);
}
.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 8px 0 28px;
}
.price-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 24px 20px;
    border: 1px solid var(--dark-border);
    text-align: center;
}
.price-card--featured {
    border-color: rgba(201, 169, 110, 0.35);
}
.price-label {
    font-size: 18px;
    font-weight: 800;
    color: var(--gold-light);
    margin-bottom: 12px;
    display: block;
}
.price-card p {
    font-size: 13px;
    text-align: center;
}

/* =============================================
   TRENDING
   ============================================= */
.trending {
    background: var(--bg);
}
.trending .container {
    max-width: 820px;
}

/* =============================================
   HOW TO CHOOSE
   ============================================= */
.how-to-choose {
    background: var(--bg-alt);
}
.how-to-choose .container {
    max-width: 820px;
}

/* =============================================
   GIFTS
   ============================================= */
.gifts {
    background: var(--bg);
}
.gifts .container {
    max-width: 820px;
}

/* =============================================
   SUSTAINABLE
   ============================================= */
.sustainable {
    background: var(--bg-alt);
}
.sustainable .container {
    max-width: 820px;
}

/* =============================================
   SHOP BY COUNTRY
   ============================================= */
.shop-by-country {
    background: var(--bg);
}
.countries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 8px 0 28px;
}
.country-card {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 20px 16px;
    border: 1px solid var(--dark-border);
    text-align: center;
    transition: border-color 0.2s ease;
}
.country-card:hover {
    border-color: rgba(201, 169, 110, 0.35);
}
.country-card h3 {
    font-size: 15px;
    text-align: center;
    margin-bottom: 8px;
}
.country-card p {
    font-size: 13px;
    text-align: center;
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews {
    background: var(--bg-alt);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin: 22px 0 24px;
}
.review-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 16px 14px;
    font-weight: 600;
    font-size: 13px;
    color: var(--text);
    text-align: center;
    line-height: 1.5;
    border-top: 2px solid var(--gold);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1408 100%);
    text-align: center;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}
.cta-section h2 {
    color: var(--gold-light);
    font-size: clamp(22px, 3.2vw, 40px);
}
.cta-section p {
    color: rgba(232, 232, 224, 0.75);
    font-size: 16px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
}
.cta-section p:last-of-type {
    margin-bottom: 0;
}
.cta-section .btn-gold {
    margin-top: 28px;
    padding: 16px 44px;
    font-size: 17px;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
    background: var(--bg-alt);
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}
.faq-item {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 24px 28px;
    border: 1px solid var(--dark-border);
}
.faq-item h3 {
    color: var(--text);
    font-size: 16px;
    margin-bottom: 10px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: #060606;
    padding: 52px 0 28px;
    border-top: 1px solid rgba(201, 169, 110, 0.12);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.footer-brand .logo {
    display: block;
    margin-bottom: 10px;
}
.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    margin: 0;
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    align-items: center;
}
.footer-nav a {
    color: rgba(232, 232, 224, 0.5);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}
.footer-nav a:hover {
    color: var(--gold-light);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 22px;
    text-align: center;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    margin: 0;
}

/* =============================================
   RESPONSIVE — HAMBURGER FROM 1024px
   ============================================= */
@media (max-width: 1024px) {

    .hamburger {
        display: flex;
    }
    .desktop-cta {
        display: none;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: var(--header-h);
        left: -24px;
        right: -24px;
        background: #080808;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0 16px;
        border-top: 1px solid rgba(201, 169, 110, 0.15);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
        z-index: 100;
        margin-left: 0;
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .nav-menu li:last-child {
        border-bottom: none;
    }
    .nav-menu li a {
        padding: 14px 24px;
        font-size: 15px;
        border-radius: 0;
    }
    .nav-menu li a:hover {
        background: rgba(201, 169, 110, 0.06);
    }
    .nav-cta-item {
        display: block;
        padding: 10px 24px;
        border-bottom: none !important;
    }
    .nav-cta-item .btn {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* Layout */
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .collections-grid {
        grid-template-columns: 1fr;
    }
    .styles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .materials-grid {
        grid-template-columns: 1fr;
    }
    .movements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .price-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 48px 0;
    }
    .hero {
        padding: 60px 0 72px;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .styles-grid {
        grid-template-columns: 1fr;
    }
    .movements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .brands-grid {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .price-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        flex-direction: column;
        gap: 24px;
    }
    .footer-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    .price-grid {
        grid-template-columns: 1fr;
    }
    .countries-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .movements-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 22px;
    }
}
