* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #050505;
    color: #ffffff;
    font-family: Inter, sans-serif;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1400px, 92%);
    margin: auto;
}

.section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 72px;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
}

/* ===== HERO ===== */

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.45);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, .85) 0%,
        rgba(0, 0, 0, .55) 35%,
        rgba(0, 0, 0, .15) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 650px;
}

.label {
    display: block;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 12px;
    color: #d8b67b;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 100px;
    font-weight: 600;
    line-height: .9;
    margin-bottom: 25px;
}

.hero p {
    font-size: 20px;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 40px;
}

.buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 18px 34px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 16px;
    font-family: Inter, sans-serif;
    cursor: pointer;
    border: none;
    transition: .3s;
}

.btn:hover {
    transform: translateY(-4px);
}

.btn-gold {
    background: #d8b67b;
    color: #000;
}

.btn-dark,
.btn-outline {
    border: 1px solid rgba(255, 255, 255, .25);
    color: white;
    background: transparent;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ===== GALLERY ===== */

.gallery {
    padding: 120px 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: transparent;
    color: #aaa;
    font-family: Inter, sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #d8b67b;
    color: #000;
    border-color: #d8b67b;
}

.masonry-gallery {
    column-count: 4;
    column-gap: 18px;
}

.masonry-gallery img {
    width: 100%;
    margin-bottom: 18px;
    border-radius: 18px;
    cursor: pointer;
    transition: .35s;
    break-inside: avoid;
    opacity: 0;
    animation: fadeIn .5s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.masonry-gallery img:hover {
    transform: scale(1.02);
}

.gallery-nav {
    text-align: center;
    margin-top: 40px;
}

/* ===== LIGHTBOX ===== */

#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 40px;
}

#lightbox.active {
    display: flex;
}

#lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 20px;
}

#close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    z-index: 10;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .1);
    border: none;
    color: white;
    font-size: 48px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-arrow:hover {
    background: rgba(216, 182, 123, .4);
}

#lightbox-prev { left: 20px; }
#lightbox-next { right: 20px; }

#lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #aaa;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .masonry-gallery { column-count: 3; }
}
@media (max-width: 768px) {
    .masonry-gallery { column-count: 2; }
}
@media (max-width: 480px) {
    .masonry-gallery { column-count: 1; }
}

/* ===== ABOUT ===== */

.about {
    padding: 140px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    height: 700px;
    object-fit: cover;
    border-radius: 32px;
}

.about-text h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 72px;
    margin-bottom: 30px;
}

.about-text p {
    color: #cfcfcf;
    font-size: 19px;
    line-height: 2;
    margin-bottom: 15px;
}

/* ===== DETAILS ===== */

.details {
    padding: 100px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.detail-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
}

.detail-card span {
    display: block;
    font-size: 13px;
    color: #d8b67b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.detail-card strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 500;
}

/* ===== AVAILABILITY ===== */

.availability {
    padding: 100px 0;
}

.availability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.availability-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    font-size: 17px;
    transition: .3s;
}

.availability-card:hover {
    border-color: #d8b67b;
    background: rgba(216, 182, 123, .06);
}

/* ===== PLATFORMS ===== */

.platforms {
    padding: 100px 0;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: auto;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 30px 35px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    transition: .3s;
    position: relative;
}

.platform-card:hover {
    border-color: #d8b67b;
    background: rgba(216, 182, 123, .06);
}

.platform-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-weight: 600;
}

.platform-desc {
    font-size: 13px;
    color: #888;
    flex: 1;
}

.platform-arrow {
    font-size: 24px;
    color: #d8b67b;
    margin-left: auto;
    transition: .3s;
}

.platform-card:hover .platform-arrow {
    transform: translateX(5px);
}

/* ===== CONTACT ===== */

.contact {
    padding: 140px 0;
}

.contact-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 60px;
    color: #bdbdbd;
    font-size: 18px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    transition: .3s;
}

.contact-item:hover {
    border-color: #d8b67b;
}

.contact-icon {
    font-size: 28px;
}

.contact-label {
    display: block;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.contact-item strong {
    font-size: 16px;
    font-weight: 500;
}

/* Form */

.contact-form-wrap {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    padding: 40px;
}

.contact-form-wrap h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 18px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 15px;
    outline: none;
    transition: .3s;
    resize: vertical;
}

.form-input::placeholder {
    color: #666;
}

.form-input:focus {
    border-color: #d8b67b;
}

.form-input-small {
    max-width: 120px;
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.captcha-label {
    font-size: 15px;
    color: #bbb;
    white-space: nowrap;
}

.captcha-label strong {
    color: #d8b67b;
}

.form-status {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
    min-height: 20px;
}

.form-status.error { color: #e74c3c; }
.form-status.success { color: #2ecc71; }

/* ===== FLOATING TELEGRAM ===== */

.telegram-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    background: #d8b67b;
    color: black;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    transition: .3s;
}

.telegram-float:hover {
    transform: translateY(-4px);
}

/* ===== FOOTER ===== */

footer {
    text-align: center;
    padding: 40px 0;
    color: #555;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

/* ===== SCROLLBAR ===== */

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #080808; }
::-webkit-scrollbar-thumb { background: #d8b67b; border-radius: 999px; }

/* ===== MOBILE ===== */

@media (max-width: 900px) {
    .hero h1 { font-size: 60px; }
    .hero p { font-size: 17px; }
    .section-title, .about-text h2 { font-size: 48px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image img { height: 400px; }
    .details-grid { grid-template-columns: repeat(2, 1fr); }
    .availability-grid { grid-template-columns: repeat(2, 1fr); }
    .platforms-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 44px; }
    .section-title, .about-text h2 { font-size: 36px; }
    .details-grid { grid-template-columns: 1fr; }
    .availability-grid { grid-template-columns: 1fr; }
    .buttons { flex-direction: column; }
    .buttons .btn { text-align: center; }
    .captcha-group { flex-direction: column; align-items: flex-start; }
    .form-input-small { max-width: 100%; }
}