/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --ink: #1a1008;
    --ink-light: #2c1f0e;
    --gold: #c9a84c;
    --gold-light: #e8c96d;
    --gold-pale: #f5e9c8;
    --cream: #faf6ef;
    --cream-dark: #f0e8d5;
    --paper: #fdf9f0;
    --dark-teal: #1e3a3a;
    --text-dark: #1a1008;
    --text-mid: #4a3a28;
    --text-light: #7a6a50;
    --border: rgba(201,168,76,0.25);
    --shadow: rgba(26,16,8,0.15);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', 'Georgia', sans-serif;
    background-color: var(--paper);
    color: var(--text-dark);
    overflow-x: hidden;
    direction: ltr;
}

h1, h2, h3, h4 { font-family: 'Cinzel', serif; line-height: 1.3; }
p { line-height: 1.9; }
a { text-decoration: none; color: inherit; }

/* ===================== NAVIGATION ===================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26,16,8,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.3);
    padding: 0 2rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    opacity: 0.7;
}
nav:hover { opacity: 1; }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--ink);
    font-weight: 900;
    letter-spacing: -1px;
}

.nav-logo-text {
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-logo-text b { display: block; }

.nav-logo-text span {
    display: block;
    font-size: 0.65rem;
    color: var(--gold-light);
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 6px;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--ink);
    font-weight: 900;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: var(--ink) !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 700 !important;
    transition: all 0.3s !important;
    box-shadow: 0 2px 10px rgba(201,168,76,0.3);
}

.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(201,168,76,0.5) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===================== LANGUAGE SWITCHER ===================== */
.nav-lang-switcher { position: relative; flex-shrink: 0; }

.lang-toggle {
    background: none;
    border: 1px solid rgba(201,168,76,0.3);
    color: rgba(255,255,255,0.7);
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s;
    line-height: 1;
    white-space: nowrap;
}

.lang-toggle:hover,
.nav-lang-switcher.open .lang-toggle {
    color: var(--gold-light);
    border-color: rgba(201,168,76,0.55);
}

.lang-caret { font-size: 0.6rem; }

.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 140px;
    background: rgba(26,16,8,0.97);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    padding: 6px;
    flex-direction: column;
    gap: 2px;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.nav-lang-switcher.open .lang-menu { display: flex; }

.lang-menu a {
    color: rgba(255,255,255,0.65);
    font-size: 0.82rem;
    padding: 7px 12px;
    border-radius: 6px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.lang-menu a:hover {
    background: rgba(201,168,76,0.1);
    color: var(--gold-light);
}

.footer-lang-list { list-style: none; }
.footer-lang-list li { margin-bottom: 6px; }
.footer-lang-list a {
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-lang-list a:hover { color: var(--gold-light); }

/* ===================== HERO — SPLIT LAYOUT ===================== */
#hero {
    min-height: 100vh;
    background: #0b0806;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end; /* LTR: content on RIGHT */
}

.hero-artwork-panel {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.6;
}

.hero-artwork-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Gradient fades artwork left→right toward text panel */
.hero-artwork-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(11,8,6,0.05) 0%,
            rgba(11,8,6,0.15) 35%,
            rgba(11,8,6,0.7) 65%,
            #0b0806 90%
        ),
        linear-gradient(to bottom,
            rgba(11,8,6,0.65) 0%,
            transparent 18%,
            transparent 68%,
            rgba(11,8,6,0.9) 100%
        );
}

/* Gold accent at the boundary between artwork and text */
.hero-artwork-panel::before {
    content: '';
    position: absolute;
    top: 15%;
    bottom: 15%;
    right: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.45), transparent);
    z-index: 2;
}

/* Right side: bio content panel */
.hero-content-panel {
    position: relative;
    z-index: 2;
    width: 44%;
    padding: 0 4rem 5.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.3rem;
    text-align: right;
}

.hero-signature {
    max-height: 250px;
    max-width: 300px;
    width: auto;
    object-fit: contain;
    opacity: 0.92;
    filter: drop-shadow(0 2px 12px rgba(201,168,76,0.35));
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.hero-master-name {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    letter-spacing: 1px;
}

.hero-master-name span { color: var(--gold-light); }

.hero-gold-line {
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    align-self: flex-end;
}

.hero-credentials {
    display: flex;
    flex-direction: column;
    gap: 9px;
    text-align: right;
}

.hero-cred-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.62);
    font-size: 0.86rem;
    line-height: 1.6;
}

.hero-cred-item::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    order: -1;
}

.hero-desc-short {
    color: rgba(255,255,255,0.48);
    font-size: 0.88rem;
    line-height: 1.9;
    max-width: 360px;
    border-left: 2px solid rgba(201,168,76,0.35);
    padding-left: 1rem;
}

.hero-vertical-label {
    position: absolute;
    left: 1.2rem;
    bottom: 6rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: rgba(255,255,255,0.16);
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    z-index: 3;
}

.scroll-down {
    position: absolute;
    bottom: 2.2rem;
    left: 3.5rem;
    color: rgba(255,255,255,0.28);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 3;
}

.scroll-down::after {
    content: '↓';
    display: block;
    font-size: 1rem;
    margin-top: 6px;
    animation: bounce 2s infinite;
}

@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

@media (max-width: 900px) {
    .hero-artwork-panel { width: 100%; height: 50vh; bottom: auto; top: 70px; }
    .hero-artwork-panel::after { background: linear-gradient(to bottom, rgba(11,8,6,0.1) 0%, rgba(11,8,6,0.3) 50%, #0b0806 100%); }
    .hero-artwork-panel::before { display: none; }
    .hero-content-panel { width: 100%; padding: 0 2rem 4rem; margin-top: calc(50vh + 70px - 8rem); align-items: flex-start; text-align: left; }
    .hero-vertical-label { display: none; }
}

/* ===================== SECTIONS ===================== */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label { display: inline-block; color: var(--gold); font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 1rem; font-weight: 700; }
.section-title { font-family: 'Cinzel', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--ink); font-weight: 700; margin-bottom: 1rem; letter-spacing: 1px; }
.section-title.light { color: #fff; }
.section-sub { color: var(--text-light); font-size: 0.95rem; max-width: 580px; margin: 0 auto; line-height: 2; }
.section-sub.light { color: rgba(255,255,255,0.55); }
.title-ornament { display:flex; align-items:center; justify-content:center; gap:12px; margin-top:1rem; }
.title-ornament::before, .title-ornament::after { content:''; width:60px; height:1px; background:linear-gradient(90deg, transparent, var(--gold)); }
.title-ornament::after { background:linear-gradient(90deg, var(--gold), transparent); }
.ornament-diamond { color: var(--gold); font-size: 0.6rem; }

/* ===================== ABOUT ===================== */
#about { padding: 7rem 2rem; background: var(--paper); }

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper { position: relative; }

.about-image-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold-light));
    z-index: 0;
    border-radius: 4px;
}

.about-image-frame img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 3px;
    filter: sepia(10%) contrast(1.05);
}

.about-image-deco {}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    right: -16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--ink);
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
    line-height: 1.5;
    letter-spacing: 0.5px;
    z-index: 2;
}

.about-intro {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--ink);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.about-intro span { color: var(--gold); }

.about-body {
    color: var(--text-mid);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 2;
}

.about-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 2rem;
}

.fact-item { display: flex; align-items: flex-start; gap: 10px; }
.fact-icon { width: 34px; height: 34px; background: var(--gold-pale); border: 1px solid rgba(201,168,76,0.3); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.fact-text strong { display: block; font-size: 0.84rem; color: var(--ink); font-weight: 700; }
.fact-text span { font-size: 0.78rem; color: var(--text-light); }

.about-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s;
    border: 1px solid;
}

.social-btn.instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: white; border-color: transparent; }
.social-btn.telegram { background: #0088cc; color: white; border-color: transparent; }
.social-btn.whatsapp { background: #25D366; color: white; border-color: transparent; }
.social-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.3); }

/* ===================== QUOTE ===================== */
.quote-band {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0d0a06, #1a1008);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-band::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15rem;
    color: rgba(201,168,76,0.04);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: rgba(255,255,255,0.82);
    font-style: italic;
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.quote-source { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; position: relative; z-index: 1; }

/* ===================== HONORS ===================== */
#honors {
    padding: 7rem 2rem;
    background: linear-gradient(180deg, #0d0a06, #1a1008, #0f1e1e);
    position: relative;
    overflow: hidden;
}

.honors-bg-text {
    position: absolute;
    font-family: 'Cinzel', serif;
    font-size: 25vw;
    font-weight: 900;
    color: rgba(201,168,76,0.025);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -3px;
}

.honors-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

.honor-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.honor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), transparent);
}

.honor-card:hover { background: rgba(201,168,76,0.07); border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.honor-number { font-family: 'Cinzel', serif; font-size: 2.5rem; font-weight: 900; color: rgba(201,168,76,0.12); line-height: 1; margin-bottom: 1rem; }
.honor-title { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--gold-light); font-weight: 700; margin-bottom: 0.5rem; letter-spacing: 0.5px; }
.honor-desc { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.9; }

/* ===================== GALLERY ===================== */
#gallery { padding: 7rem 2rem; background: var(--cream); }

.gallery-filter { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 3rem; }

.filter-btn {
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(201,168,76,0.3);
    background: transparent;
    color: var(--text-mid);
}

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

.gallery-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

.gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #f0e8d5;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.4s;
    box-shadow: 0 4px 16px rgba(26,16,8,0.1);
}

.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26,16,8,0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-info h4 { font-family: 'Cinzel', serif; font-size: 0.95rem; color: white; margin-bottom: 4px; letter-spacing: 0.5px; }
.gallery-info span { font-size: 0.78rem; color: var(--gold-light); }

/* ===================== NZ Gallery CPT card ===================== */
.nz-gallery-item {
    display: block;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: var(--cream-dark);
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.4s;
    box-shadow: 0 4px 16px rgba(26,16,8,0.1);
    text-decoration: none;
}

.nz-gallery-item:hover { transform: scale(1.02); }
.nz-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.nz-gallery-item:hover img { transform: scale(1.08); }

.nz-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(26,16,8,0.9));
    color: white;
    padding: 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nz-gallery-item:hover .nz-gallery-caption { opacity: 1; }
.nz-gallery-caption span { font-size: 0.75rem; color: var(--gold-light); font-weight: 400; }

.nz-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }

/* ===================== SHOP ===================== */
#shop { padding: 7rem 2rem; background: var(--cream-dark); }

.shop-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }

.product-card {
    background: var(--paper);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s;
    box-shadow: 0 2px 12px var(--shadow);
}

.product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(26,16,8,0.15); }

.product-thumb {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f5e9c8, #e8d5a8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-body { padding: 1.5rem; }
.product-cat { font-size: 0.68rem; color: var(--gold); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 6px; font-weight: 700; }
.product-name { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--ink); font-weight: 700; margin-bottom: 8px; }
.product-desc { font-size: 0.84rem; color: var(--text-light); line-height: 1.9; margin-bottom: 1rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 700; color: var(--ink); }
.product-price span { font-size: 0.72rem; color: var(--text-light); font-family: 'Lato', sans-serif; font-weight: 400; display: block; }

.btn-order {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--ink);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.btn-order:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(201,168,76,0.4); }

/* ===================== ORDER FORM ===================== */
#order {
    padding: 7rem 2rem;
    background: linear-gradient(165deg, #0d0a06 0%, #1a1008 100%);
    position: relative;
    overflow: hidden;
}

.order-form-container { max-width: 900px; margin: 0 auto; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; color: rgba(255,255,255,0.65); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 6px;
    padding: 13px 16px;
    color: rgba(255,255,255,0.9);
    font-size: 0.92rem;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group select option { background: #1a1008; color: white; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { text-align: center; margin-top: 2rem; }

/* ===================== CONTACT ===================== */
#contact { padding: 7rem 2rem; background: var(--paper); }

.contact-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info-title { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--ink); font-weight: 700; margin-bottom: 2rem; letter-spacing: 1px; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon { width: 44px; height: 44px; background: var(--gold-pale); border: 1px solid rgba(201,168,76,0.3); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item-text strong { display: block; font-size: 0.85rem; color: var(--ink); margin-bottom: 3px; font-weight: 700; }
.contact-item-text span, .contact-item-text a { font-size: 0.85rem; color: var(--text-light); }
.contact-item-text a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.social-icon-btn { width: 44px; height: 44px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: transform 0.3s; text-decoration: none; }
.social-icon-btn:hover { transform: translateY(-3px); }
.social-icon-btn.ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: white; }
.social-icon-btn.tg { background: #0088cc; color: white; }
.social-icon-btn.wa { background: #25D366; color: white; }
.social-icon-btn.instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: white; }
.social-icon-btn.telegram  { background: #0088cc; color: white; }
.social-icon-btn.whatsapp  { background: #25D366; color: white; }

.contact-map { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px var(--shadow); border: 1px solid var(--border); }
.map-header { background: var(--gold); color: var(--ink); padding: 12px 20px; font-size: 0.85rem; font-weight: 700; display: flex; align-items: center; gap: 8px; letter-spacing: 0.5px; }
.map-fallback { width: 100%; height: 380px; background: linear-gradient(135deg, #e8d5a8, #f5e9c8); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--text-mid); }
.map-fallback p { text-align: center; font-size: 0.88rem; line-height: 1.9; max-width: 260px; }
.map-directions-btn { background: var(--gold); color: var(--ink); padding: 10px 24px; border-radius: 6px; font-size: 0.85rem; font-weight: 700; font-family: 'Cinzel', serif; text-decoration: none; transition: all 0.3s; letter-spacing: 0.5px; }
.map-directions-btn:hover { background: var(--gold-light); }

/* ===================== FOOTER ===================== */
footer {
    background: #0d0a06;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-logo-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--ink); font-weight: 900; }
.footer-logo-text { color: white; font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 1px; }
.footer-logo-text span { display: block; font-size: 0.65rem; color: rgba(255,255,255,0.35); font-family: 'Lato', sans-serif; font-weight: 300; letter-spacing: 2px; text-transform: uppercase; }
.footer-desc { color: rgba(255,255,255,0.4); font-size: 0.85rem; line-height: 2; max-width: 280px; }
.footer-widget-title { font-family: 'Cinzel', serif; color: var(--gold-light); font-size: 0.85rem; font-weight: 700; margin-bottom: 1.2rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(201,168,76,0.15); letter-spacing: 1px; }
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-list a { color: rgba(255,255,255,0.45); font-size: 0.82rem; transition: color 0.3s; }
.footer-links-list a:hover { color: var(--gold-light); }
.footer-social-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { color: rgba(255,255,255,0.28); font-size: 0.78rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.28); font-size: 0.78rem; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ===================== FADE IN ===================== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===================== CONTAINER ===================== */
.container { max-width: 1200px; margin: 0 auto; }

/* ===================== BUTTONS ===================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--ink);
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.5); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,0.8);
    padding: 13px 30px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 400;
    border: 1px solid rgba(255,255,255,0.25);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

/* ===================== LIGHTBOX ===================== */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-overlay.active { display: flex; }

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s;
}

.lightbox-close:hover { color: var(--gold-light); }

#lightboxImg {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

/* ===================== MODAL ===================== */
.nz-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.nz-modal[style*="flex"] { display: flex !important; }

.nz-modal-box {
    background: #1a1008;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    max-width: 420px;
    margin: 2rem;
}

.nz-modal-box h3 { font-family: 'Cinzel', serif; color: var(--gold-light); font-size: 1.4rem; margin-bottom: 1rem; letter-spacing: 1px; }
.nz-modal-box p { color: rgba(255,255,255,0.65); line-height: 2; margin-bottom: 2rem; font-size: 0.92rem; }

/* ===================== WORDPRESS PAGE WRAP ===================== */
.nz-page-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.nz-page-wrap h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--ink);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.entry-content { color: var(--text-mid); line-height: 2; }
.entry-content p { margin-bottom: 1.5rem; }
.entry-content h2, .entry-content h3 { font-family: 'Cinzel', serif; color: var(--ink); margin: 2rem 0 1rem; }
.entry-content a { color: var(--gold); text-decoration: underline; }
.entry-content a:hover { color: var(--gold-light); }

/* ===================== SHOP PAGE (WooCommerce) ===================== */
.nz-shop-page-header {
    background: linear-gradient(165deg, #0d0a06, #1a1008);
    color: white;
    padding: 8rem 2rem 3rem;
    text-align: center;
}

.nz-shop-page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.nz-shop-page-header p {
    color: rgba(255,255,255,0.55);
    max-width: 560px;
    margin: 0 auto;
}

.nz-shop-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* ===================== SINGLE GALLERY ===================== */
.nz-single-gallery {
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 2rem 5rem;
}

.nz-single-gallery figure img {
    width: 100%;
    border-radius: 8px;
    display: block;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(26,16,8,0.2);
}

.nz-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1rem;
}

.nz-meta a {
    background: var(--gold-pale);
    color: var(--ink);
    font-size: 0.78rem;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(201,168,76,0.3);
    font-weight: 600;
}

.nz-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.nz-back-link:hover { color: var(--gold-light); }

/* ===================== CONTACT PAGE ===================== */
.nz-contact-page { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }

.nz-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.nz-contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.nz-contact-form .form-group { display: flex; flex-direction: column; gap: 6px; }
.nz-contact-form label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }

.nz-contact-form input,
.nz-contact-form select,
.nz-contact-form textarea {
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 12px 14px;
    color: var(--text-dark);
    font-size: 0.92rem;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s;
}

.nz-contact-form input:focus,
.nz-contact-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.nz-contact-form textarea { min-height: 140px; resize: vertical; }

/* ===================== PAGINATION ===================== */
.nz-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 1rem 0;
}

.nz-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-family: 'Cinzel', serif;
    border: 1px solid var(--border);
    color: var(--text-mid);
    transition: all 0.2s;
}

.nz-pagination .page-numbers.current,
.nz-pagination .page-numbers:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

/* ===================== WOOCOMMERCE OVERRIDES ===================== */
.woocommerce-products-header { display: none; }

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    background: var(--paper);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px var(--shadow);
    transition: all 0.4s;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26,16,8,0.15);
}

.woocommerce ul.products li.product a img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    color: var(--ink);
    font-weight: 700;
    padding: 1rem 1.2rem 0.3rem;
}

.woocommerce ul.products li.product .price {
    padding: 0 1.2rem 0.5rem;
    color: var(--gold);
    font-weight: 700;
}

.woocommerce ul.products li.product a.button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--gold);
    color: var(--ink);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    border-radius: 6px;
    border: none;
    padding: 10px 20px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
}

.woocommerce ul.products li.product a.button:hover { background: var(--gold-light); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .about-container { grid-template-columns: 1fr; }
    .contact-container { grid-template-columns: 1fr; }
    .nz-contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: 1; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(26,16,8,0.98);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(201,168,76,0.2);
        z-index: 999;
    }
    .hamburger { display: flex; }
    .footer-top { grid-template-columns: 1fr; }
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1a1008; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===================== A11Y ===================== */
.skip-link { position: absolute; top: -999em; left: 0; background: var(--gold); color: var(--ink); padding: 8px 16px; z-index: 10000; font-weight: 700; }
.skip-link:focus { top: 0; }
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }
