/* ── Reset & Base ────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg:        #0c0c0e;
    --bg-soft:   #141418;
    --bg-card:   #1a1a20;
    --text:      #e8e6e3;
    --text-dim:  #8a8a8e;
    --accent:    #c8a44e;
    --accent-dk: #b8923a;
    --accent-light: #dfc06a;
    --border:    #2a2a30;
    --radius:    8px;
    --shadow:    0 4px 24px rgba(0,0,0,.4);
    --max-w:     1200px;
    --font:      'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-light); }

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

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

/* ── Header / Nav ───────────────────────────────────── */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(12,12,14,.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.5); }

.nav {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex; align-items: center; gap: 8px;
    font-size: 1.3rem; font-weight: 700; color: var(--text);
    letter-spacing: 3px; text-transform: uppercase;
}
.nav-logo img { height: 36px; width: auto; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
    color: var(--text-dim); font-size: .85rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1.5px;
    transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }

.nav-burger {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 4px;
}
.nav-burger span {
    display: block; width: 24px; height: 2px;
    background: var(--text); border-radius: 2px; transition: .3s;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    padding-top: 72px;
    position: relative; overflow: hidden;
    background: var(--bg);
}

.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200,164,78,.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(200,164,78,.04) 0%, transparent 60%);
}

.hero::after {
    content: ''; position: absolute;
    top: 0; right: -10%; width: 55%; height: 100%;
    background: linear-gradient(135deg, rgba(200,164,78,.03) 0%, transparent 60%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 80px;
    padding: 80px 0;
}

.hero-text { }
.hero-label {
    display: inline-block;
    font-size: .75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 24px;
    padding: 6px 16px;
    border: 1px solid rgba(200,164,78,.3);
    border-radius: 4px;
}
.hero-text h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800; line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero-text h1 span {
    color: var(--accent);
    position: relative;
}
.hero-text h1 span::after {
    content: ''; position: absolute;
    bottom: 4px; left: 0; right: 0; height: 3px;
    background: var(--accent); opacity: .3;
}
.hero-text p {
    font-size: 1.1rem; color: var(--text-dim);
    max-width: 460px; margin-bottom: 40px;
    line-height: 1.7;
}

/* ── Hero visual ─────────────────────────────────────── */
.hero-visual {
    display: flex; justify-content: center; align-items: center;
    position: relative;
}

.hero-showcase {
    position: relative;
    width: 100%; aspect-ratio: 1;
    max-width: 480px;
}

.showcase-ring {
    position: absolute; inset: 0;
    border: 1px solid rgba(200,164,78,.15);
    border-radius: 50%;
    animation: ringRotate 30s linear infinite;
}
.showcase-ring::before {
    content: ''; position: absolute;
    top: -4px; left: 50%; width: 8px; height: 8px;
    background: var(--accent); border-radius: 50%;
    transform: translateX(-50%);
}

.showcase-ring-inner {
    position: absolute; inset: 40px;
    border: 1px solid rgba(200,164,78,.1);
    border-radius: 50%;
    animation: ringRotate 20s linear infinite reverse;
}
.showcase-ring-inner::before {
    content: ''; position: absolute;
    bottom: -3px; left: 50%; width: 6px; height: 6px;
    background: var(--accent); border-radius: 50%; opacity: .6;
    transform: translateX(-50%);
}

.showcase-center {
    position: absolute; inset: 80px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
}

.showcase-logo {
    width: 180px; height: auto;
    color: var(--accent);
    filter: drop-shadow(0 0 30px rgba(200,164,78,.2));
}
.showcase-number {
    font-size: 5rem; font-weight: 800;
    color: var(--accent); line-height: 1;
    letter-spacing: -3px;
}
.showcase-unit {
    font-size: .85rem; color: var(--text-dim);
    text-transform: uppercase; letter-spacing: 3px;
    margin-top: -4px;
}

.showcase-items {
    position: absolute; inset: 0;
}
.showcase-item {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 18px;
    font-size: .8rem; font-weight: 500;
    color: var(--text-dim);
    white-space: nowrap;
    box-shadow: var(--shadow);
}
.showcase-item::before {
    content: '';
    display: inline-block; width: 6px; height: 6px;
    background: var(--accent); border-radius: 50%;
    margin-right: 8px; vertical-align: middle;
}
.showcase-item:nth-child(1) { top: 5%; right: -10%; }
.showcase-item:nth-child(2) { top: 35%; left: -15%; }
.showcase-item:nth-child(3) { bottom: 25%; right: -12%; }
.showcase-item:nth-child(4) { bottom: 5%; left: -8%; }

@keyframes ringRotate {
    to { transform: rotate(360deg); }
}

/* ── Hero stats ──────────────────────────────────────── */
.hero-stats {
    display: flex; gap: 48px; margin-top: 48px;
    padding-top: 32px; border-top: 1px solid var(--border);
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
    font-size: 2rem; font-weight: 800; color: var(--text);
    line-height: 1.2;
}
.hero-stat-label {
    font-size: .78rem; color: var(--text-dim);
    text-transform: uppercase; letter-spacing: 1px;
    margin-top: 4px;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 36px; border-radius: 4px;
    font-size: .9rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.5px;
    cursor: pointer; border: none; transition: all .25s;
}
.btn-primary {
    background: var(--accent); color: #0c0c0e;
}
.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200,164,78,.3);
}
.btn-outline {
    background: transparent; color: var(--text-dim);
    border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Sections ────────────────────────────────────────── */
section { padding: 120px 0; }

.section-header {
    text-align: center; margin-bottom: 64px;
}
.section-label {
    display: inline-block;
    font-size: .75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
}
.section-header h2 {
    font-size: 2.4rem; font-weight: 700; margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-header p { color: var(--text-dim); font-size: 1.05rem; }

/* ── About ───────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.about-card {
    background: var(--bg-card); border-radius: var(--radius);
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: border-color .3s, transform .3s;
    position: relative; overflow: hidden;
}
.about-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: var(--accent); opacity: 0;
    transition: opacity .3s;
}
.about-card:hover { border-color: rgba(200,164,78,.3); transform: translateY(-4px); }
.about-card:hover::before { opacity: 1; }

.about-card .icon {
    width: 48px; height: 48px; border-radius: 8px;
    background: rgba(200,164,78,.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; font-size: 1.3rem;
}
.about-card h3 { font-size: 1.05rem; margin-bottom: 10px; font-weight: 600; }
.about-card p { color: var(--text-dim); font-size: .9rem; line-height: 1.6; }

/* ── Gallery ─────────────────────────────────────────── */
#gallery { background: var(--bg-soft); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius); overflow: hidden;
    position: relative; cursor: pointer;
    aspect-ratio: 4/3; background: var(--bg-card);
    border: 1px solid var(--border);
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s, filter .5s;
    filter: brightness(.9);
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1); }
.gallery-item .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(12,12,14,.7) 0%, transparent 50%);
    display: flex; align-items: flex-end; padding: 20px;
    opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .overlay { opacity: 1; }
.overlay span { color: #fff; font-weight: 600; font-size: .9rem; letter-spacing: .5px; }

/* ── Placeholder gallery ─────────────────────────────── */
.gallery-placeholder {
    aspect-ratio: 4/3;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--text-dim); gap: 8px;
    transition: border-color .3s;
}
.gallery-placeholder:hover { border-color: rgba(200,164,78,.3); }
.gallery-placeholder .ph-icon { font-size: 2rem; opacity: .3; }
.gallery-placeholder span { font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; }

/* ── Reviews ─────────────────────────────────────────── */
.reviews-source {
    text-align: center; margin-top: 32px;
    font-size: .85rem; color: var(--text-dim);
}
.reviews-source a {
    color: var(--accent); font-weight: 600;
    transition: color .2s;
}
.reviews-source a:hover { color: var(--accent-light); }

.reviews-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    cursor: grab;
    position: relative;
}
.reviews-marquee:active { cursor: grabbing; }

.reviews-track {
    display: flex; gap: 24px;
    width: max-content;
    will-change: transform;
}

.review-card {
    background: var(--bg-card); border-radius: var(--radius);
    padding: 32px; border: 1px solid var(--border);
    position: relative;
    min-width: 340px; max-width: 340px;
    flex-shrink: 0;
}
.review-card::before {
    content: '\201C'; position: absolute;
    top: 16px; right: 20px;
    font-size: 3.5rem; color: var(--accent); opacity: .15;
    font-family: Georgia, serif; line-height: 1;
}
.review-card .stars {
    color: var(--accent); font-size: 1rem; margin-bottom: 12px;
    letter-spacing: 2px;
}
.review-card .text {
    color: var(--text-dim);
    margin-bottom: 16px; line-height: 1.7;
    font-size: .9rem;
}
.review-card .author {
    font-weight: 600; font-size: .85rem; color: var(--text);
}

@media (max-width: 680px) {
    .review-card { min-width: 280px; max-width: 280px; padding: 24px; }
}

/* ── Contact / Order ─────────────────────────────────── */
#contact { background: var(--bg-soft); }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: start;
}

.contact-info h3 { font-size: 1.4rem; margin-bottom: 16px; font-weight: 600; }
.contact-info p { color: var(--text-dim); margin-bottom: 32px; line-height: 1.7; }
.contact-list { list-style: none; }
.contact-list li {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0; color: var(--text-dim); font-size: .95rem;
    border-bottom: 1px solid var(--border);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list li .ci { font-size: 1.1rem; width: 24px; text-align: center; color: var(--accent); }

.order-form {
    background: var(--bg-card); border-radius: var(--radius);
    padding: 40px; border: 1px solid var(--border);
}
.order-form h3 { font-size: 1.2rem; margin-bottom: 28px; font-weight: 600; }

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: .8rem; font-weight: 600;
    margin-bottom: 8px; text-transform: uppercase;
    letter-spacing: 1px; color: var(--text-dim);
}
.form-group input,
.form-group textarea {
    width: 100%; padding: 14px 16px;
    border: 1px solid var(--border); border-radius: 4px;
    font-size: .95rem; font-family: var(--font);
    background: var(--bg); color: var(--text);
    transition: border-color .2s;
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }
.form-group textarea { min-height: 100px; }

/* ── Consent checkbox ─────────────────────────────────── */
.consent-row {
    display: flex; align-items: flex-start; gap: 12px;
    cursor: pointer; margin-bottom: 20px;
    font-size: .8rem; line-height: 1.5; color: var(--text-dim);
}
.consent-row input { display: none; }
.consent-check {
    flex-shrink: 0;
    width: 20px; height: 20px; margin-top: 1px;
    border: 1px solid var(--border); border-radius: 4px;
    background: var(--bg);
    transition: border-color .2s, background .2s;
    position: relative;
}
.consent-check::after {
    content: ''; position: absolute;
    top: 3px; left: 6px;
    width: 5px; height: 10px;
    border: solid var(--bg); border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0; transition: opacity .2s;
}
.consent-row input:checked + .consent-check {
    background: var(--accent); border-color: var(--accent);
}
.consent-row input:checked + .consent-check::after { opacity: 1; }
.consent-text a { color: var(--accent); }

.form-success, .form-error {
    display: none; text-align: center; padding: 24px;
    font-weight: 600; font-size: 1rem;
    margin-top: 16px; border-radius: 4px;
}
.form-success { color: var(--accent); }
.form-error { color: #e05555; }
.form-error a { color: #e05555; text-decoration: underline; }

/* ── Footer ──────────────────────────────────────────── */
.footer {
    background: var(--bg); color: var(--text-dim);
    padding: 48px 0 32px; text-align: center;
    font-size: .85rem; border-top: 1px solid var(--border);
}
.footer a { color: var(--accent); }
.footer p + p { margin-top: 8px; }

/* ── Lightbox ────────────────────────────────────────── */
.lightbox {
    display: none; position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,.92); backdrop-filter: blur(12px);
    align-items: center; justify-content: center;
    cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90vw; max-height: 90vh;
    border-radius: 4px;
}
.lightbox-close {
    position: absolute; top: 24px; right: 32px;
    color: #fff; font-size: 2rem; cursor: pointer;
    background: none; border: none; line-height: 1;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 48px; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .btn-group { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { order: -1; }
    .showcase-item { display: none; }
    .hero-showcase { max-width: 320px; }
    .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }

    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 72px; left: 0; right: 0;
        background: rgba(12,12,14,.97);
        backdrop-filter: blur(16px);
        padding: 24px; gap: 20px;
        border-bottom: 1px solid var(--border);
    }

    section { padding: 72px 0; }
    .section-header h2 { font-size: 1.8rem; }
    .about-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-stat-num { font-size: 1.5rem; }
}

/* ── Animations ──────────────────────────────────────── */
.fade-up {
    opacity: 0; transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
