/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 0; }
body {
    font-family: 'Montserrat', system-ui, sans-serif;
    background: #09160e;
    color: #f5f0e8;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== GOLD GRADIENT ===== */
.gold-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #c9a84c 40%, #b8942e 100%);
}
.gold-text {
    background: linear-gradient(135deg, #e8cf7a 0%, #c9a84c 50%, #a07818 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SIDEBAR NAV ===== */
.sidebar {
    position: fixed;
    left: 0; top: 0;
    width: 240px;
    height: 100vh;
    background: linear-gradient(180deg, #0a1f14 0%, #0d2818 50%, #09160e 100%);
    border-right: 1px solid rgba(201, 168, 76, 0.12);
    display: flex;
    flex-direction: column;
    padding: 32px 0;
    z-index: 100;
    overflow-y: auto;
}
.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    margin-bottom: 40px;
}
.sidebar-logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.sidebar-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f5f0e8;
}
.sidebar-logo-text span { color: #c9a84c; }

.sidebar-nav { flex: 1; }
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.5);
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}
.sidebar-link:hover,
.sidebar-link.active {
    color: #c9a84c;
    border-left-color: #c9a84c;
    background: rgba(201, 168, 76, 0.06);
}
.sidebar-link svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.7; }
.sidebar-link:hover svg,
.sidebar-link.active svg { opacity: 1; }

.sidebar-footer {
    padding: 24px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}
.sidebar-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #c9a84c;
    margin-bottom: 8px;
    transition: opacity 0.3s;
}
.sidebar-phone:hover { opacity: 0.8; }
.sidebar-phone svg { width: 16px; height: 16px; }
.sidebar-address {
    font-size: 0.72rem;
    color: rgba(245, 240, 232, 0.35);
    line-height: 1.6;
}

/* ===== MOBILE HEADER ===== */
.mobile-header {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 64px;
    background: rgba(9, 22, 14, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    z-index: 200;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}
.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #f5f0e8;
}
.mobile-logo span { color: #c9a84c; }
.menu-toggle {
    width: 36px; height: 36px;
    background: none; border: none; cursor: pointer;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 5px;
}
.menu-toggle span {
    width: 22px; height: 2px;
    background: #c9a84c;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(9, 22, 14, 0.98);
    backdrop-filter: blur(16px);
    z-index: 199;
    flex-direction: column;
    padding: 40px 32px;
    gap: 4px;
    overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-link {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 16px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    color: rgba(245, 240, 232, 0.7);
    transition: color 0.3s;
}
.mobile-menu-link:hover { color: #c9a84c; }
.mobile-menu-contact {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.mobile-menu-contact a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #c9a84c;
    display: block;
    margin-bottom: 12px;
}
.mobile-menu-contact p {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.6;
}

/* ===== HERO ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}
.hero-image-side {
    position: relative;
    overflow: hidden;
}
.hero-image-side img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9,22,14,0.3) 0%, transparent 50%, rgba(9,22,14,0.6) 100%);
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 50% at 70% 50%, rgba(26,58,42,0.5) 0%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 48px;
    max-width: 640px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 24px;
    padding: 8px 16px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 100px;
    width: fit-content;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(245,240,232,0.7);
    margin-bottom: 40px;
    max-width: 480px;
}
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a84c 60%, #a07818 100%);
    color: #09160e;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none; cursor: pointer;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,168,76,0.3);
}
.btn-gold svg { width: 16px; height: 16px; }
.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: #c9a84c;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-outline-gold:hover {
    background: rgba(201,168,76,0.08);
    border-color: #c9a84c;
}
.btn-full { width: 100%; justify-content: center; }
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.hero-stat { flex: 1; }
.hero-stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #c9a84c;
}
.hero-stat-label {
    font-size: 0.72rem;
    color: rgba(245,240,232,0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero-stat-divider {
    width: 1px; height: 40px;
    background: rgba(201,168,76,0.2);
}

/* ===== SECTIONS ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    width: 32px; height: 1px;
    background: #c9a84c;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 1rem;
    color: rgba(245,240,232,0.6);
    max-width: 560px;
    line-height: 1.8;
}
.section-header-center { text-align: center; margin-bottom: 64px; }
.section-header-center .section-label { justify-content: center; }
.section-header-center .section-label::before { display: none; }
.section-header-center .section-subtitle { margin: 0 auto; }

/* ===== ABOUT ===== */
.section-about {
    padding: 120px 0;
    position: relative;
}
.section-about::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 1px; height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3));
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-image-col { position: relative; }
.about-img-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}
.about-img-main img { width: 100%; height: 620px; object-fit: cover; }
.about-img-float {
    position: absolute;
    bottom: -40px; right: -40px;
    border-radius: 8px;
    overflow: hidden;
    border: 4px solid #0d2818;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.about-img-float img { width: 100%; height: 260px; object-fit: cover; }
.about-text-col { padding-top: 20px; }
.about-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(245,240,232,0.85);
    margin-bottom: 20px;
}
.about-text-col p {
    font-size: 0.95rem;
    color: rgba(245,240,232,0.6);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}
.about-value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.about-value-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    display: flex; align-items: center; justify-content: center;
}
.about-value-icon svg { width: 20px; height: 20px; color: #c9a84c; }
.about-value strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.about-value span {
    font-size: 0.82rem;
    color: rgba(245,240,232,0.5);
}

/* ===== PRODUCTS ===== */
.section-products {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13,40,24,0.4) 50%, transparent 100%);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.product-card {
    background: linear-gradient(145deg, rgba(13,40,24,0.8) 0%, rgba(9,22,14,0.9) 100%);
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,0.25);
    box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.1);
}
.product-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.product-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-badge {
    position: absolute;
    top: 12px; left: 12px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #d4af37, #a07818);
    color: #09160e;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
}
.product-card-body { padding: 24px; }
.product-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.product-card-desc {
    font-size: 0.85rem;
    color: rgba(245,240,232,0.55);
    line-height: 1.7;
    margin-bottom: 16px;
}
.product-card-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: #c9a84c;
    letter-spacing: 0.04em;
    transition: opacity 0.3s;
}
.product-card-link:hover { opacity: 0.7; }

/* ===== EXPERIENCE ===== */
.section-experience {
    padding: 120px 0;
}
.experience-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.experience-images { position: relative; }
.experience-img-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0,0,0,0.4);
    margin-bottom: 20px;
}
.experience-img-main img { width: 100%; height: 680px; object-fit: cover; }
.experience-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.experience-img-row img {
    width: 100%; height: 240px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.experience-text { padding-top: 20px; }
.experience-desc {
    font-size: 1rem;
    color: rgba(245,240,232,0.65);
    line-height: 1.8;
    margin-bottom: 40px;
}
.experience-services {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}
.exp-service {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.exp-service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(201,168,76,0.25);
    line-height: 1;
    min-width: 40px;
}
.exp-service strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.exp-service span {
    font-size: 0.82rem;
    color: rgba(245,240,232,0.5);
}

/* ===== CONTACT ===== */
.section-contact {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13,40,24,0.3) 100%);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-item-icon {
    width: 48px; height: 48px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.15);
    display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 20px; height: 20px; color: #c9a84c; }
.contact-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.contact-item p {
    font-size: 0.88rem;
    color: rgba(245,240,232,0.6);
    line-height: 1.6;
}
.contact-link {
    color: #c9a84c;
    transition: opacity 0.3s;
}
.contact-link:hover { opacity: 0.7; }
.contact-map { border-radius: 12px; overflow: hidden; }

.contact-form-col {
    background: linear-gradient(145deg, rgba(13,40,24,0.6) 0%, rgba(9,22,14,0.8) 100%);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 16px;
    padding: 40px;
}
.contact-form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.contact-form-desc {
    font-size: 0.88rem;
    color: rgba(245,240,232,0.55);
    margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.5);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(9,22,14,0.6);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 8px;
    color: #f5f0e8;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245,240,232,0.25);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(201,168,76,0.5);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.form-group select { cursor: pointer; appearance: none; }
.form-group select option { background: #0d2818; }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
    text-align: center;
    padding: 32px;
}
.form-success svg {
    width: 48px; height: 48px;
    color: #c9a84c;
    margin: 0 auto 16px;
}
.form-success h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.form-success p {
    font-size: 0.88rem;
    color: rgba(245,240,232,0.6);
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 0;
    background: #071009;
    border-top: 1px solid rgba(201,168,76,0.08);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.footer-logo span { color: #c9a84c; }
.footer-tagline {
    font-size: 0.85rem;
    color: rgba(245,240,232,0.45);
    line-height: 1.7;
    max-width: 280px;
}
.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li {
    font-size: 0.85rem;
    color: rgba(245,240,232,0.45);
    transition: color 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}
.footer-col a:hover { color: #c9a84c; }
.footer-col svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
    border-top: 1px solid rgba(201,168,76,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(245,240,232,0.3);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .sidebar { display: none; }
    .mobile-header { display: flex; }
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-image-side { height: 50vh; }
    .hero-content {
        padding: 100px 24px 60px;
        max-width: 100%;
    }
    .hero-stats { flex-wrap: wrap; }
    .about-grid,
    .experience-layout,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-img-float { position: relative; bottom: 0; right: 0; margin-top: 16px; }
    .about-img-main img { height: 400px; }
    .experience-img-main img { height: 400px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .hero-content { padding: 90px 20px 48px; }
    .hero-title { font-size: 2.8rem; }
    .hero-cta-group { flex-direction: column; }
    .hero-cta-group a { text-align: center; justify-content: center; }
    .products-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-col { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section-about,
    .section-products,
    .section-experience,
    .section-contact { padding: 80px 0; }
    .experience-img-row { grid-template-columns: 1fr; }
    .experience-img-row img { height: 200px; }
}
