*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #b07d20;
    --gold-light: #d4983a;
    --gold-bg: #fdf6ec;
    --gold-border: rgba(176, 125, 32, 0.22);
    --steel: #1a2332;
    --text-primary: #1a2332;
    --text-secondary: #5a6475;
    --text-dim: #8a95a3;
    --bg-main: #ffffff;
    --bg-alt: #f8f8f6;
    --bg-card: #ffffff;
    --border: #e4e4e0;
    --border-light: #eeede9;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    box-shadow: 0 1px 0 var(--border-light);
}

.nav-logo {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--steel);
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--steel);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--gold);
}

/* HERO — keep dark for visual impact */
.hero {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    padding: 60px 2rem 60px;
    position: relative;
    overflow: hidden;
    background: var(--steel);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.05;
    background-image: linear-gradient(rgba(201, 146, 42, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 146, 42, 1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-accent {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    width: 42%;
    background: rgba(255, 255, 255, 0.025);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 146, 42, 0.12);
    border: 1px solid rgba(201, 146, 42, 0.3);
    padding: 6px 16px;
    border-radius: 2px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e8b04a;
    margin-bottom: 1.5rem;
}

.hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.75);
    }
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.6rem;
}

.hero h1 em {
    font-style: normal;
    color: #e8b04a;
    display: block;
}

.hero-sub {
    font-size: 1.05rem;
    color: #9aafc4;
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    margin: 0 auto;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.hero-stat-num {
    font-size: 2.4rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.hero-stat-num span {
    color: #e8b04a;
}

.hero-stat-label {
    font-size: 0.72rem;
    color: #6a82a0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 30px;
}

.btn-gold {
    background: var(--gold-light);
    color: var(--steel);
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gold:hover {
    background: #e8c060;
    transform: translateY(-1px);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #c8d8e8;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #7a90a8;
}

.hero-badge svg {
    color: #e8b04a;
    flex-shrink: 0;
}

/* SECTIONS */
section {
    padding: 96px 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::after {
    content: '';
    flex: 0 0 40px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: normal;
    color: var(--gold);
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 2rem;
}

/* ABOUT */
.about {
    background: var(--bg-main);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.about-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.info-item {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    padding: 14px 16px;
    border-radius: 0 4px 4px 0;
}

.info-label {
    font-size: 0.68rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.info-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.about-visual-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.about-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.big-stat {
    text-align: center;
    margin-bottom: 2rem;
}

.big-stat-num {
    font-size: 36px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.big-stat-label {
    font-size: 0.78rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.bar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bar-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.bar-name {
    color: var(--text-secondary);
}

.bar-val {
    color: var(--gold);
    font-weight: 600;
}

.bar-track {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

/* FIELDS */
.fields {
    background: var(--bg-alt);
}

.fields-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.field-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.field-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.field-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(176, 125, 32, 0.08);
}

.field-card:hover::after {
    transform: scaleX(1);
}

.field-icon {
    width: 52px;
    height: 52px;
    background: var(--gold-bg);
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
}

.field-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.field-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.field-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 1rem;
}

.tag {
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--gold-bg);
    color: var(--gold);
    border: 1px solid var(--gold-border);
    padding: 3px 9px;
    border-radius: 2px;
}

/* PROJECTS */
.projects {
    background: var(--bg-main);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.25s;
}

.project-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(176, 125, 32, 0.08);
}

.project-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: var(--bg-alt);
}

.project-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--gold-bg);
    color: var(--gold);
    border: 1px solid var(--gold-border);
    padding: 3px 9px;
    border-radius: 2px;
    margin-bottom: 8px;
    display: inline-block;
}

.project-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    text-transform: uppercase;
}

.project-flag {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-left: 1rem;
    margin-top: 2px;
}

.project-body {
    padding: 10px 1.5rem;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-dim);
    /* margin-bottom: 0.75rem; */
}

.project-location svg {
    flex-shrink: 0;
    color: var(--gold);
}

.project-desc {
    font-size: 0.83rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.project-meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.project-meta-item {
    font-size: 0.75rem;
}

.project-meta-key {
    color: var(--text-dim);
    margin-bottom: 2px;
}

.project-meta-val {
    color: var(--text-primary);
    font-weight: 600;
}

/* STANDARDS */
.standards {
    background: var(--bg-alt);
}

.std-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.std-box {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
}

.std-box-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gold-border);
}

.std-list {
    list-style: none;
}

.std-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.55;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.std-list li:last-child {
    border-bottom: none;
}

.std-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 6px;
}

/* CTA */
.cta-section {
    background: var(--steel);
    padding: 80px 2rem;
}

.cta-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 146, 42, 0.2);
    border-radius: 12px;
    padding: 4rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 146, 42, 0.04) 0%, transparent 60%);
}

.cta-box h2 {
    font-size: 2.4rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
}

.cta-box p {
    color: #7a90a8;
    margin-bottom: 2.5rem;
    position: relative;
}

.btn-primary-cta {
    background: var(--gold-light);
    color: var(--steel);
    padding: 0.9rem 2.25rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    position: relative;
}

.btn-primary-cta:hover {
    background: #e8c060;
    transform: translateY(-1px);
}

.cta-contacts {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    position: relative;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.cta-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(201, 146, 42, 0.1);
    border: 1px solid rgba(201, 146, 42, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-contact-label {
    color: #6a82a0;
    font-size: 0.7rem;
    margin-bottom: 2px;
}

.cta-contact-val {
    color: #d0dce8;
    font-weight: 600;
}

/* FOOTER */
footer {
    background: #0f1720;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

footer p {
    font-size: 0.78rem;
    color: #5a6e82;
}

footer strong {
    color: var(--gold-light);
}

/* SCROLL REVEAL */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

.field-desc > *:last-of-type {
    margin-bottom: 0;
}
.field-card .field-image {
    margin-bottom: 16px;
}

.field-card .field-image img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}
.project_image img{
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}










/* RESPONSIVE */
@media (max-width: 900px) {
    .about-grid, .std-grid {
        grid-template-columns: 1fr;
    }

    .fields-grid {
        grid-template-columns: 1fr 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    nav .nav-links {
        display: none;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .fields-grid {
        grid-template-columns: 1fr;
    }

    .about-info {
        grid-template-columns: 1fr;
    }

    /*.hero h1 {*/
    /*    font-size: 2.4rem;*/
    /*}*/

    .hero-stats {
        flex-wrap: wrap;
    }
}