/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: #070707;
    color: #d4d4d4;
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.section {
    padding: 100px 0;
}
.section-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #c7a44b;
    margin-bottom: 16px;
    display: inline-block;
}
.section-title {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
}
.section-title.center { text-align: center; }
.text-accent { color: #c7a44b; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}
.header.scrolled {
    background: rgba(7, 7, 7, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}
.logo-accent { color: #c7a44b; }

.nav-list {
    display: flex;
    gap: 36px;
}
.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #999;
    transition: color 0.3s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c7a44b;
    transition: width 0.3s;
}
.nav-link:hover,
.nav-link.active { color: #fff; }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: radial-gradient(ellipse at 30% 50%, rgba(199,164,75,0.08) 0%, transparent 60%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 60 0 L 0 0 0 60' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='60' height='60' fill='url(%23grid)'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}
.hero-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #c7a44b;
}
.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin: 20px 0 24px;
}
.hero-desc {
    font-size: 1.1rem;
    color: #999;
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.8;
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.btn-primary {
    background: #c7a44b;
    color: #070707;
}
.btn-primary:hover {
    background: #dbb95f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(199,164,75,0.3);
}
.btn-outline {
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}
.btn-outline:hover {
    border-color: #c7a44b;
    color: #c7a44b;
    transform: translateY(-2px);
}
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 80px;
    padding: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 1;
}
.stat-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 2px;
}
.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
}
.stat-plus { font-family: 'Syne', sans-serif; font-size: 1.4rem; color: #c7a44b; }
.stat-label {
    width: 100%;
    font-size: 0.85rem;
    color: #777;
    margin-top: 4px;
}

/* ===== ABOUT ===== */
.about { background: #0a0a0a; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 48px;
}
.about-text p {
    color: #999;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
}
.feature-icon { font-size: 1.3rem; }
.feature-item span:last-child { font-size: 0.9rem; font-weight: 500; color: #ccc; }

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    color: #666;
    font-size: 0.9rem;
}
.placeholder-icon { font-size: 4rem; opacity: 0.5; }

/* ===== SERVICES ===== */
.services { background: #070707; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.service-card {
    padding: 36px 28px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    transition: all 0.4s ease;
}
.service-card:hover {
    background: rgba(199,164,75,0.05);
    border-color: rgba(199,164,75,0.2);
    transform: translateY(-6px);
}
.service-icon { font-size: 2.5rem; margin-bottom: 20px; }
.service-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.7;
}

/* ===== WHY US ===== */
.why-us {
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.why-item {
    padding: 32px;
    border-left: 2px solid rgba(199,164,75,0.3);
    transition: all 0.3s;
}
.why-item:hover { border-left-color: #c7a44b; }
.why-num {
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #c7a44b;
    letter-spacing: 2px;
}
.why-item h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 12px 0 10px;
}
.why-item p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.7;
}

/* ===== PORTFOLIO ===== */
.portfolio { background: #070707; }
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s;
}
.portfolio-item:hover { transform: translateY(-4px); }
.portfolio-img {
    aspect-ratio: 3/4;
    overflow: hidden;
}
.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    opacity: 0.4;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
}
.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}
.portfolio-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c7a44b;
    font-weight: 600;
}
.portfolio-info h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-top: 6px;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: #0a0a0a; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.testimonial-card {
    padding: 32px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
}
.testimonial-stars {
    color: #c7a44b;
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.testimonial-card p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c7a44b, #a8883a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #070707;
}
.testimonial-author div strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
}
.testimonial-author div span {
    font-size: 0.8rem;
    color: #777;
}

/* ===== CONTACT ===== */
.contact {
    background: radial-gradient(ellipse at 50% 0%, rgba(199,164,75,0.06) 0%, transparent 60%);
}
.contact-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.contact-content p {
    color: #999;
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.8;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}
.contact-icon { font-size: 1.5rem; }
.contact-item div strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
}
.contact-item div span {
    color: #999;
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 60px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}
.footer-brand p {
    color: #888;
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 280px;
}
.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.footer-links a {
    display: block;
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.3s;
}
.footer-links a:hover { color: #c7a44b; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 24px 0;
}
.footer-bottom p {
    color: #555;
    font-size: 0.85rem;
    text-align: center;
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-title { font-size: 3.2rem; }
    .section-title { font-size: 2.2rem; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .contact-item { justify-content: flex-start; }
}

@media (max-width: 640px) {
    .nav { display: none; }
    .nav.open { display: block; position: fixed; inset: 0; background: rgba(7,7,7,0.98);
        display: flex; align-items: center; justify-content: center; }
    .nav.open .nav-list { flex-direction: column; text-align: center; gap: 24px; }
    .nav-link { font-size: 1.3rem; }
    .menu-toggle { display: flex; z-index: 1001; }
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .hero-title { font-size: 2.4rem; }
    .section-title { font-size: 1.8rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); margin-top: 40px; padding: 20px; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .footer-inner { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
}
