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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: #111;
    color: #d4d4d4;
    font-size: 1.15rem;
    line-height: 1.8;
}

a { color: #d4d4d4; text-decoration: none; }
a:hover { color: #fff; }

/* ─── Nav ─────────────────────────────────────────── */
nav {
    border-bottom: 1px solid #222;
    padding: 20px 0;
}
.nav-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-brand {
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    color: #e8e8e8;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    font-size: 1rem;
    color: #888;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}
.nav-links a:hover { color: #e8e8e8; }
.nav-links a.active {
    color: #e8e8e8;
    border-bottom: 1px solid #c0b89a;
    padding-bottom: 2px;
}

/* ─── Hero ────────────────────────────────────────── */
.hero {
    text-align: center;
    padding: 100px 30px 80px;
}
.hero h1 {
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #e8e8e8;
    margin-bottom: 14px;
}
.hero .tagline {
    font-size: 1.15rem;
    color: #888;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.divider {
    width: 60px;
    height: 1px;
    background: #c0b89a;
    margin: 0 auto 30px;
}
.hero-sub {
    font-size: 1.25rem;
    color: #999;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* ─── Page Header ─────────────────────────────────── */
.page-header {
    text-align: center;
    padding: 80px 30px 50px;
}
.page-header h1 {
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #e8e8e8;
    margin-bottom: 12px;
}
.page-header .tagline {
    font-size: 1.1rem;
    color: #888;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ─── Content ─────────────────────────────────────── */
.content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px 80px;
}
.intro {
    max-width: 750px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.2rem;
    color: #aaa;
}

/* ─── Cards ───────────────────────────────────────── */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 36px 30px;
    transition: border-color 0.2s;
    display: block;
}
.card:hover { border-color: #c0b89a; }
.card h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #e8e8e8;
    margin-bottom: 14px;
    letter-spacing: 0.03em;
}
.card p { color: #999; font-size: 1.05rem; }

/* ─── Service Blocks ──────────────────────────────── */
.service-block {
    margin-bottom: 70px;
    padding-bottom: 70px;
    border-bottom: 1px solid #222;
}
.service-block:last-child { border-bottom: none; }
.service-block h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #e8e8e8;
    margin-bottom: 8px;
}
.service-entity {
    font-size: 1rem;
    color: #c0b89a;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}
.service-block > p {
    font-size: 1.15rem;
    color: #aaa;
    margin-bottom: 30px;
    max-width: 750px;
}
.service-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.detail-col h4 {
    font-size: 1.1rem;
    color: #e8e8e8;
    font-weight: 400;
    margin-bottom: 14px;
    letter-spacing: 0.04em;
}
.detail-col ul {
    list-style: none;
    padding: 0;
}
.detail-col li {
    padding: 6px 0;
    color: #999;
    font-size: 1.05rem;
    border-bottom: 1px solid #1a1a1a;
}

/* ─── Spec Sections ───────────────────────────────── */
.spec-section {
    margin-bottom: 60px;
}
.spec-section h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #e8e8e8;
    margin-bottom: 12px;
}
.spec-section > p {
    color: #aaa;
    margin-bottom: 30px;
    font-size: 1.15rem;
}
.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 20px;
}
.spec-item {
    background: #1a1a1a;
    border: 1px solid #222;
    padding: 30px 26px;
}
.spec-item h4 {
    font-size: 1.15rem;
    color: #e8e8e8;
    font-weight: 400;
    margin-bottom: 12px;
}
.spec-item p { color: #999; font-size: 1.05rem; }
.spec-item ul {
    list-style: none;
    padding: 0;
}
.spec-item li {
    padding: 5px 0;
    color: #999;
    font-size: 1.05rem;
}

/* ─── Contact ─────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 70px;
}
.contact-block {
    background: #1a1a1a;
    border: 1px solid #222;
    padding: 40px 30px;
    text-align: center;
}
.contact-block h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #e8e8e8;
    margin-bottom: 12px;
}
.contact-block p { font-size: 1.1rem; color: #999; }
.contact-block a {
    color: #d4d4d4;
    border-bottom: 1px solid #c0b89a;
    padding-bottom: 1px;
}
.contact-block a:hover { color: #fff; border-bottom-color: #fff; }

.entities { margin-top: 40px; }
.entities h2 {
    font-size: 1.6rem;
    font-weight: 400;
    color: #e8e8e8;
    margin-bottom: 30px;
    text-align: center;
}
.entity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.entity {
    background: #1a1a1a;
    border: 1px solid #222;
    padding: 30px 26px;
    text-align: center;
}
.entity h4 {
    font-size: 1.15rem;
    color: #e8e8e8;
    font-weight: 400;
    margin-bottom: 10px;
}
.entity p { color: #999; font-size: 1.05rem; }

/* ─── Portfolio ───────────────────────────────────── */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 20px;
}
.portfolio-item {
    background: #1a1a1a;
    border: 1px solid #222;
    padding: 30px 26px;
}
.portfolio-item h4 {
    font-size: 1.15rem;
    color: #e8e8e8;
    font-weight: 400;
    margin-bottom: 10px;
}
.portfolio-item p { color: #999; font-size: 1.05rem; }

/* ─── Footer ──────────────────────────────────────── */
footer {
    border-top: 1px solid #222;
    padding: 40px 0;
    text-align: center;
}
.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}
.legal {
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
    margin-bottom: 8px;
}
footer p {
    font-size: 1rem;
    color: #666;
}
footer a {
    color: #999;
    border-bottom: 1px solid #c0b89a;
    padding-bottom: 1px;
}
footer a:hover { color: #e8e8e8; border-bottom-color: #e8e8e8; }

/* ─── Mobile ──────────────────────────────────────── */
@media (max-width: 600px) {
    .nav-inner { flex-direction: column; gap: 14px; }
    .nav-links { gap: 20px; }
    .hero h1 { font-size: 2rem; }
    .hero { padding: 60px 20px 50px; }
    .page-header { padding: 50px 20px 30px; }
    .page-header h1 { font-size: 1.8rem; }
}
