:root {
    --bg: #020617;
    --surface: #111827;
    --surface-2: #0f172a;
    --accent: #22c55e;
    --accent-2: #38bdf8;
    --text: #e5e7eb;
    --muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, var(--bg), var(--surface-2));
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, calc(100% - 24px));
    margin: 0 auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    color: var(--muted);
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #fff;
}

main {
    padding: 40px 0 60px;
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 12px;
    color: #fff;
}

.hero p {
    color: var(--muted);
    margin-bottom: 18px;
    max-width: 720px;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn {
    display: inline-block;
    padding: 11px 16px;
    border-radius: 10px;
    font-weight: 700;
    background: var(--accent);
    color: #052e16;
}

.btn.secondary {
    background: transparent;
    color: #fff;
    border: 1px solid var(--border);
}

.panel {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.14), rgba(56, 189, 248, 0.1));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
}

.panel h3 {
    color: #fff;
    margin-bottom: 8px;
}

.panel p {
    color: var(--muted);
    margin-bottom: 8px;
}

.page-intro {
    margin-bottom: 24px;
}

.page-intro h2 {
    color: #fff;
    margin-bottom: 8px;
}

.page-intro p {
    color: var(--muted);
    max-width: 760px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.card h3 {
    color: #fff;
    margin-bottom: 8px;
}

.card p,
.card li {
    color: var(--muted);
}

.tag {
    display: inline-block;
    background: rgba(56, 189, 248, 0.15);
    color: #7dd3fc;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

ul {
    list-style: none;
    margin-top: 10px;
}

ul li {
    padding: 7px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

ul li:last-child {
    border-bottom: none;
}

.home-gallery-section {
    margin-top: 24px;
}

.cover-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 12px;
}

.home-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.home-photo-card {
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.gallery-section {
    margin-top: 12px;
}

.gallery-subsection {
    margin-top: 20px;
}

.gallery-subsection h4 {
    color: #fff;
    margin-bottom: 12px;
}

.home-photo-card img,
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: #0f172a;
}

.image-zoom-trigger {
    cursor: zoom-in;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-zoom-trigger:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.image-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2000;
}

.image-modal.active {
    display: flex;
}

.image-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.86);
}

.image-modal-content {
    position: relative;
    width: min(920px, 100%);
    max-height: 90vh;
    background: rgba(17, 24, 39, 0.98);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.image-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(2, 6, 23, 0.8);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
}

.image-modal-content img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    background: #020617;
}

.image-modal-body {
    padding: 18px 20px 22px;
}

.image-modal-body h3 {
    color: #fff;
    margin-bottom: 8px;
}

.image-modal-body p {
    color: var(--muted);
}

.home-photo-info {
    padding: 16px;
    display: grid;
    gap: 6px;
}

.home-photo-info h3 {
    color: #fff;
}

.home-photo-info p {
    color: var(--muted);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.testimonial-card {
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.testimonial-card p {
    color: var(--text);
    margin-bottom: 10px;
}

.testimonial-card strong {
    color: var(--accent);
}

.product-section {
    margin-top: 24px;
}

.product-section h3 {
    color: #fff;
    margin-bottom: 14px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.product-card {
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.product-info {
    padding: 16px;
    display: grid;
    gap: 8px;
}

.product-info h4 {
    color: #fff;
}

.product-info p {
    color: var(--muted);
    font-size: 0.95rem;
}

.order-btn {
    display: inline-block;
    width: fit-content;
    margin-top: 4px;
    padding: 9px 13px;
    border-radius: 10px;
    background: var(--accent);
    color: #052e16;
    font-weight: 700;
}

.order-btn:hover {
    opacity: 0.95;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
}

.contact-item strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
}

.contact-form {
    margin-top: 24px;
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    display: grid;
    gap: 14px;
}

.contact-form h3 {
    color: #fff;
    margin-bottom: 4px;
}

.contact-form label {
    display: grid;
    gap: 6px;
    color: var(--muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(56, 189, 248, 0.35);
    border-color: var(--accent-2);
}

.contact-form button {
    border: none;
    cursor: pointer;
    width: fit-content;
}

footer {
    border-top: 1px solid var(--border);
    padding: 24px 0 36px;
    text-align: center;
    color: var(--muted);
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    background: rgba(34, 197, 94, 0.16);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-copy {
    margin-top: 6px;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }
    .nav {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-links {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    main {
        padding: 24px 0 40px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .btn-row {
        flex-direction: column;
    }
    .btn {
        text-align: center;
        width: 100%;
    }
    .home-gallery,
    .product-grid,
    .testimonial-grid,
    .contact-grid,
    .grid {
        grid-template-columns: 1fr;
    }
    .panel,
    .contact-form,
    .card,
    .testimonial-card,
    .product-card,
    .home-photo-card {
        border-radius: 14px;
    }
    .contact-form button {
        width: 100%;
    }
    .social-link {
        width: 42px;
        height: 42px;
    }
}