* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: #0a0a0a;
    color: #e8e8e8;
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }

/* Header */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10,10,10,0.85); backdrop-filter: blur(12px);
    border-bottom: 1px solid #222;
    padding: 16px 24px;
}
.header-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
}
.brand {
    font-size: 1.4rem; font-weight: 700; color: #c4a882;
    font-family: 'Playfair Display', serif;
}
.nav { display: flex; gap: 2rem; align-items: center; }
.nav a { color: #888; font-size: 0.9rem; transition: color 0.3s; }
.nav a:hover { color: #e8e8e8; }
.nav .active { color: #c4a882; }
.nav-cta {
    background: #c4a882; color: #0a0a0a !important;
    padding: 8px 20px; border-radius: 6px; font-weight: 600;
}
.nav-cta:hover { background: #d4b892; }

/* Buttons */
.btn {
    display: inline-block; padding: 14px 32px; border-radius: 6px;
    font-weight: 600; font-size: 0.95rem; transition: all 0.25s ease;
    cursor: pointer; border: none;
}
.btn-primary { background: #c4a882; color: #0a0a0a; }
.btn-primary:hover { background: #d4b892; transform: translateY(-2px); }
.btn-secondary { border: 1px solid #c4a882; color: #e8e8e8; background: transparent; }
.btn-secondary:hover { background: rgba(196,168,130,0.12); transform: translateY(-2px); }

/* Hero */
.hero {
    position: relative;
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 60px; overflow: hidden;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 8vw, 5rem);
    line-height: 1.05; letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.hero h1 em { font-style: italic; color: #c4a882; }
.hero .sub {
    font-size: 1.2rem; color: #888;
    max-width: 600px; margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.04);
    padding: 6px 16px; border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.06);
    font-size: 0.75rem; color: #888;
    margin-bottom: 1.5rem;
}
.hero-badge span { color: #c4a882; }

/* Page Hero (inner pages) */
.page-hero {
    padding: 140px 0 60px;
    text-align: center;
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 0.8rem;
}
.page-hero p { color: #888; max-width: 600px; margin: 0 auto; }

/* Sections */
.section { padding: 80px 0; }
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.1; letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
}
.section-sub { color: #888; max-width: 600px; font-size: 1rem; }
.text-center { text-align: center; }

/* Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem; margin-top: 2.5rem;
}
.card {
    background: #161616; padding: 1.8rem;
    border-radius: 8px; border: 1px solid #222;
    transition: transform 0.3s ease, border-color 0.3s;
}
.card:hover { transform: translateY(-4px); border-color: #c4a882; }
.card .icon { font-size: 2rem; margin-bottom: 0.5rem; }
.card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.card p { color: #888; font-size: 0.9rem; }

/* Work Cards (larger) */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem; margin-top: 2.5rem;
}
.work-card {
    background: #161616;
    border-radius: 8px; overflow: hidden;
    border: 1px solid #222;
    transition: transform 0.3s ease, border-color 0.3s;
}
.work-card:hover { transform: translateY(-4px); border-color: #c4a882; }
.work-card .img-placeholder {
    height: 200px;
    background: #222;
    display: flex; align-items: center; justify-content: center;
    color: #555; font-size: 0.9rem;
}
.work-card .info { padding: 1.5rem; }
.work-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.work-card .tags {
    color: #666; font-size: 0.8rem;
    margin-top: 0.5rem;
}
.work-card .result { color: #c4a882; font-weight: 600; }

/* Trust Banner */
.trust-banner {
    overflow: hidden; padding: 16px 0;
    border-top: 1px solid #222; border-bottom: 1px solid #222;
    background: #111;
}
.trust-track {
    display: flex; gap: 3rem; white-space: nowrap;
    animation: scrollBanner 30s linear infinite;
    width: max-content;
}
.trust-track span { font-size: 1rem; color: #888; letter-spacing: 0.08em; text-transform: uppercase; }
.trust-track .dot { color: #c4a882; margin: 0 6px; }
.trust-track strong { color: #e8e8e8; font-weight: 600; }
@keyframes scrollBanner { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Pricing */
.pricing-box {
    max-width: 480px; margin: 0 auto;
    background: #161616; border: 1px solid #222;
    border-radius: 12px; padding: 2rem;
    text-align: center; margin-top: 2.5rem;
}
.pricing-box .price {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; font-weight: 700; color: #c4a882;
}
.pricing-box .price small { font-size: 0.9rem; color: #888; }
.pricing-box ul {
    list-style: none; margin: 1.2rem 0; text-align: left;
}
.pricing-box ul li {
    padding: 0.4rem 0; border-bottom: 1px solid #222;
    display: flex; gap: 10px; align-items: center;
    font-size: 0.9rem;
}
.pricing-box ul li::before { content: "✓"; color: #c4a882; font-weight: 700; }

/* Testimonials */
.testimonial {
    background: #161616; padding: 1.8rem;
    border-radius: 8px; border-left: 4px solid #c4a882;
    margin-bottom: 1.2rem;
}
.testimonial p { font-size: 1.05rem; font-style: italic; }
.testimonial .author { margin-top: 0.5rem; font-weight: 600; color: #c4a882; font-style: normal; }

/* FAQ */
.faq-item {
    border-bottom: 1px solid #222; padding: 1rem 0;
    max-width: 700px; margin: 0 auto;
}
.faq-item summary {
    font-weight: 600; font-size: 1rem; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+"; font-size: 1.4rem; color: #c4a882;
    transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: #888; padding-top: 0.6rem; font-size: 0.95rem; }

/* CTA */
.cta-section {
    background: #111; border-radius: 12px; padding: 3rem 1.5rem;
    text-align: center; border: 1px solid #222;
}
.cta-section h2 { font-size: 2.2rem; margin-bottom: 0.5rem; font-family: 'Playfair Display', serif; }
.cta-section p { color: #888; max-width: 500px; margin: 0 auto 1.5rem; }
.cta-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* Footer */
.footer {
    padding: 30px 0; border-top: 1px solid #222; margin-top: 40px;
    display: flex; justify-content: space-between; flex-wrap: wrap;
    gap: 16px; color: #555; font-size: 0.85rem;
}
.footer a { color: #888; transition: color 0.3s; }
.footer a:hover { color: #c4a882; }
.footer-socials { display: flex; gap: 16px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 768px) {
    .nav a:not(.nav-cta) { display: none; }
    .footer { flex-direction: column; text-align: center; }
    .hero { min-height: 80vh; }
    .hero-canvas { display: none; }
    .trust-track span { font-size: 0.8rem; gap: 2rem; }
    .work-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 120px 0 40px; }
}