/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    background: var(--black);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 48px 80px;
    overflow: hidden;
}

/* Grid lines background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--gray-dark) 1px, transparent 1px),
        linear-gradient(90deg, var(--gray-dark) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.25;
}

/* Blue+yellow accent bar */
.hero::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, var(--yellow) 0%, var(--blue-light) 35%, var(--blue-dark) 100%);
}

.hero-eyebrow {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeUp 0.7s ease both;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    line-height: 0.95;
    letter-spacing: -0.01em;
    max-width: 820px;
    position: relative;
    animation: fadeUp 0.7s 0.15s ease both;
}

.hero-title .highlight {
    color: var(--accent);
    display: block;
}

.hero-sub {
    margin-top: 32px;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--gray-light);
    max-width: 520px;
    line-height: 1.7;
    position: relative;
    animation: fadeUp 0.7s 0.3s ease both;
}

.hero-actions {
    margin-top: 44px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    animation: fadeUp 0.7s 0.45s ease both;
}

.hero-badge {
    position: absolute;
    right: 80px;
    bottom: 80px;
    width: 155px;
    height: 155px;
    border: 2px solid var(--yellow);
    background: rgba(10,10,10,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    animation: fadeUp 0.7s 0.6s ease both;
    padding: 16px;
}

.hero-badge svg {
    width: 48px;
    height: 32px;
    stroke: var(--yellow);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-badge-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 2;
}

.hero-badge-label span {
    display: block;
    color: var(--yellow);
    font-weight: 600;
}

/* ticker */
.hero-ticker {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: var(--blue-dark);
    height: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    animation: ticker 22s linear infinite;
    white-space: nowrap;
    gap: 0;
}

.ticker-item {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-light);
    padding: 0 36px;
    display: flex;
    align-items: center;
    gap: 36px;
}

.ticker-item::after {
    content: '◆';
    color: var(--yellow);
    font-size: 0.4rem;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── ABOUT ─── */
.about {
    background: var(--white);
    border-top: 4px solid var(--black);
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 0.01em;
    margin-bottom: 32px;
    color: var(--black);
}

.about-content h2 em {
    color: var(--blue);
    font-style: normal;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    font-weight: 300;
    margin-bottom: 20px;
}

.about-content p:last-of-type { margin-bottom: 32px; }

.about-photo {
    position: relative;
}

.building-photo {
    position: relative;
    width: 100%;
}

.building-photo img {
    width: 100%;
    aspect-ratio: 4/3.2;
    object-fit: cover;
    display: block;
    border: 2px solid var(--gray-light);
    filter: grayscale(20%) contrast(1.05);
}

.building-photo .corner-br {
    position: absolute;
    bottom: 12px; right: 12px;
    width: 28px; height: 28px;
    border-bottom: 3px solid var(--yellow);
    border-right: 3px solid var(--yellow);
}

.building-photo::before {
    content: '';
    position: absolute;
    top: 12px; left: 12px;
    width: 28px; height: 28px;
    border-top: 3px solid var(--yellow);
    border-left: 3px solid var(--yellow);
    z-index: 1;
}

/*.photo-placeholder {
    width: 100%;
    aspect-ratio: 4/3.2;
    background: var(--gray-bg);
    border: 2px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.photo-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
          45deg,
          transparent,
          transparent 20px,
          rgba(0,0,0,0.025) 20px,
          rgba(0,0,0,0.025) 21px
        );
}

.photo-placeholder svg {
    width: 52px;
    height: 52px;
    stroke: var(--gray-mid);
    fill: none;
    stroke-width: 1.5;
    position: relative;
}

.photo-placeholder-text {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray-mid);
    position: relative;
}

/* corner accents 
.photo-placeholder::after {
    content: '';
    position: absolute;
    top: 12px; left: 12px;
    width: 28px; height: 28px;
    border-top: 3px solid var(--blue);
    border-left: 3px solid var(--blue);
}

.corner-br {
    position: absolute;
    bottom: 12px; right: 12px;
    width: 28px; height: 28px;
    border-bottom: 3px solid var(--yellow);
    border-right: 3px solid var(--yellow);
}*/

.about-stats {
    margin-top: 24px;
    display: flex;
    border: 2px solid var(--black);
}

.stat {
    flex: 1;
    padding: 20px 24px;
    border-right: 2px solid var(--black);
    text-align: center;
}

.stat:last-child { border-right: none; }

.stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--yellow-dark);
    line-height: 1;
}

.stat-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-top: 4px;
}

/* ─── SERVICES ─── */
.services {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26,75,140,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,75,140,0.07) 1px, transparent 1px);
    background-size: 48px 48px;
}

.services-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.services .section-label { color: var(--accent); }
.services .section-label::before { background: var(--accent); }

.services-headline {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
    max-width: 720px;
    margin-bottom: 60px;
    border-left: 5px solid var(--blue);
    padding-left: 24px;
}

.services-headline em {
    color: var(--accent);
    font-style: normal;
}

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

.service-card {
    background: var(--gray-dark);
    padding: 32px 28px;
    border: 1px solid #333;
    position: relative;
    transition: background 0.2s;
    cursor: default;
}

.service-card:hover {
    background: var(--blue-dark);
}

.service-card:hover .service-num { color: var(--white); }

.service-num {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
    transition: color 0.2s;
}

.service-icon {
    font-size: 1.4rem;
    margin-bottom: 14px;
    display: block;
    filter: grayscale(1) brightness(1.5);
}

.service-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    line-height: 1.3;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 3px;
    background: var(--yellow);
    transition: width 0.3s;
}

.service-card:hover::after { width: 100%; }

/* ─── SPLIT SECTION ─── */
.split-section {
    padding: 0;
}

.split-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.split-panel {
    padding: 72px 56px;
}

.split-panel--dark {
    background: var(--gray-dark);
    border-top: 4px solid var(--yellow);
}

.split-panel--light {
    background: var(--gray-bg);
    border-top: 4px solid var(--blue);
}

.section-label--dark {
    color: var(--blue) !important;
}

.section-label--dark::before {
    background: var(--blue) !important;
}

.split-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 28px;
    line-height: 1.1;
}

.split-heading--dark {
    color: var(--black);
}

.split-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.split-list li {
    font-family: 'Oswald', sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.split-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.split-list li i {
    color: var(--yellow);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.split-subtext {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray-mid);
    line-height: 1.75;
    margin-bottom: 32px;
}

.license-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.license-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-left: 5px solid var(--blue);
    padding: 18px 22px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.license-card:hover {
    border-color: var(--blue);
    border-left-color: var(--yellow);
    box-shadow: 4px 0 0 0 var(--yellow);
}

.license-card i {
    font-size: 1.5rem;
    color: var(--blue);
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.license-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.license-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--black);
}

.license-card-sub {
    font-family: 'Oswald', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-mid);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { gap: 20px; }

    section { padding: 72px 24px; }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .split-inner {
        grid-template-columns: 1fr;
    }

    .split-panel {
        padding: 56px 24px;
    }

    .hero-badge { display: none; }

    footer { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 600px) {
    .nav-links { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .about-stats { flex-direction: column; }
    .stat { border-right: none; border-bottom: 2px solid var(--black); }
    .stat:last-child { border-bottom: none; }
}