* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black:      #0a0a0a;
    --cream:      #f5f0e8;
    --cream-dim:  rgba(245, 240, 232, 0.7);
    --gold:       #c9a84c;
    --gold-light: #dfc278;
    --gold-dark:  #9a7530;
    --gold-dim:   rgba(201, 168, 76, 0.25);
    --gold-faint: rgba(201, 168, 76, 0.1);
    --ink:        #1a1714;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: min(1200px, 90%);
    margin: auto;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, .92);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    height: 40px;
    width: auto;
    display: block;
}

.logo-text {
    color: var(--cream);
    font-weight: 700;
    font-size: 18px;
    white-space: nowrap;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--cream);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--cream);
    transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    min-height: 100vh;
    background-color: var(--black);
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(10, 10, 10, .95),
            rgba(10, 10, 10, .6));
}

.hero-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    color: var(--cream);
    max-width: 700px;
}

.hero-visual {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-faint), transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 75%;
    height: auto;
}

.tag {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 13px;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin: 20px 0;
}

.hero p {
    max-width: 600px;
    color: var(--cream-dim);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
}

.btn-secondary {
    border: 1px solid var(--gold);
    color: var(--cream);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

.stats {
    background: var(--black);
    color: var(--cream);
    padding: 70px 0;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    text-align: center;
}

.stat-card h2 {
    color: var(--gold);
    margin-bottom: 10px;
}

.section {
    padding: 120px 0;
}

.light {
    background: #ffffff;
}

.section-tag {
    color: var(--gold-dark);
    font-size: 13px;
    letter-spacing: 2px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split h2 {
    font-size: 42px;
    margin: 20px 0;
}

.image-placeholder {
    height: 450px;
    background: var(--gold-faint);
    border: 1px solid var(--gold-dim);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.about-gallery {
    position: relative;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
}

.about-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.about-gallery-slide.is-active {
    opacity: 1;
}

.center {
    text-align: center;
    margin-top: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--cream);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--gold-faint);
}

.service-card h3 {
    margin-bottom: 20px;
    color: var(--gold-dark);
}

.service-card ul {
    padding-left: 18px;
}

.mission {
    background: var(--black);
    color: var(--cream);
    padding: 100px 0;
}

.mission h3 {
    color: var(--gold);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.team-card {
    text-align: center;
}

.team-card span {
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: 1px;
}

.avatar {
    width: 180px;
    height: 180px;
    background: var(--gold-dim);
    border-radius: 50%;
    margin: auto auto 20px;
}

.contact {
    background: var(--black);
    color: var(--cream);
    padding: 120px 0;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.contact-grid strong {
    color: var(--gold);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 60px;
    align-items: center;
}

.client-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    padding: 10px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.client-logo:hover {
    opacity: 1;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: var(--black);
    color: var(--cream);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.client-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--black);
}

.client-logo:hover .client-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.client-logo span {
    color: var(--gold-dark);
    font-weight: 600;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--gold-faint);
}

.testimonial-stars {
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author .avatar {
    width: 48px;
    height: 48px;
    margin: 0;
}

.testimonial-author strong {
    display: block;
}

.testimonial-author span {
    color: var(--gold-dark);
    font-size: 13px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.blog-card {
    background: var(--cream);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--gold-faint);
    text-decoration: none;
    color: var(--ink);
    display: block;
}

.blog-card-image {
    height: 200px;
    background: var(--gold-faint);
    background-size: cover;
    background-position: center;
}

.blog-card-body {
    padding: 25px;
}

.blog-card-date {
    color: var(--gold-dark);
    font-size: 13px;
    letter-spacing: 1px;
}

.blog-card h3 {
    margin: 10px 0;
}

.blog-card p {
    font-size: 15px;
    color: #555;
}

.blog-post-header {
    padding: 160px 0 40px;
    background: var(--black);
    color: var(--cream);
    text-align: center;
}

.blog-post-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-top: 15px;
}

.blog-post-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 40px;
}

.blog-post-body {
    max-width: 720px;
    margin: 0 auto;
}

.blog-post-body img {
    max-width: 100%;
    border-radius: 8px;
}

.blog-post-body h2, .blog-post-body h3 {
    margin: 30px 0 15px;
    color: var(--gold-dark);
}

.blog-post-body p {
    margin-bottom: 18px;
}

.back-link {
    color: var(--gold-dark);
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 30px;
}

.empty-state {
    text-align: center;
    color: var(--gold-dark);
    margin-top: 40px;
}

@media(max-width:768px) {

    .nav-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        background: var(--black);
        transition: max-height 0.3s ease;
    }

    nav.active {
        max-height: 400px;
    }

    nav a {
        padding: 14px 24px;
        border-top: 1px solid rgba(245, 240, 232, 0.08);
    }

    .split,
    .services-grid,
    .team-grid,
    .contact-grid,
    .mission-grid,
    .stat-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-visual {
        display: none;
    }

    .logo-text {
        display: none;
    }
}
