﻿:root {
    --font-body: "Muli", sans-serif;
    --font-ui: "Lato", sans-serif;
    --bg-light: #ebebeb;
    --bg-light-alt: #f0f0f0;
    --bg-dark: #262626;
    --text-dark: #101010;
    --text-light: #ffffff;
    --line: rgba(255, 255, 255, 0.32);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
}

img,
video {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.skip-link {
    position: fixed;
    left: 10px;
    top: -120px;
    background: #000;
    color: #fff;
    padding: 0.75rem 1rem;
    z-index: 9999;
    border-radius: 4px;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 10px;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.narrow {
    width: min(900px, 92vw);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
}

.brand img {
    width: 142px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.nav-links a {
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.03em;
    padding-bottom: 0.15rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, opacity 0.25s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    border-bottom-color: var(--line);
    opacity: 0.9;
}

.nav-toggle {
    display: none;
    border: 0;
    background: rgba(0, 0, 0, 0.62);
    width: 56px;
    height: 48px;
    border-radius: 2px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
}

.hero {
    position: relative;
    min-height: 838px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1.2s ease;
}

.hero-bg.is-visible {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-photo {
    width: min(350px, 72vw);
    margin: 0 auto 1rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    margin-bottom: 0.8rem;
}

.hero p {
    width: min(610px, 92vw);
    margin: 0 auto;
    font-size: clamp(1.05rem, 2.7vw, 1.6rem);
    line-height: 1.25;
}

.hero-actions {
    margin-top: 1.6rem;
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.section-light {
    background: var(--bg-light);
}

.section-light-alt {
    background: var(--bg-light-alt);
}

.section-heading {
    text-align: center;
    margin-bottom: 1.7rem;
}

.section-heading h2 {
    font-family: var(--font-ui);
    font-size: clamp(1.7rem, 3.8vw, 2.2rem);
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
}

.section-heading p {
    font-size: clamp(0.98rem, 2vw, 1.15rem);
}

.bio {
    padding: 74px 0 88px;
    text-align: center;
}

.bio h2 {
    font-family: var(--font-ui);
    font-size: clamp(1.3rem, 3vw, 2rem);
    letter-spacing: 0.4em;
    font-weight: 400;
    margin-bottom: 0.55rem;
}

.title-line {
    width: 186px;
    border-top: 1px solid #000;
    margin: 0 auto 2.8rem;
}

.bio p {
    font-size: clamp(1rem, 2.1vw, 1.18rem);
    margin-bottom: 1.3rem;
}

.highlights {
    padding-bottom: 1.7rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.feature-card {
    position: relative;
    min-height: 675px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 10%, rgba(0, 0, 0, 0.16) 56%);
}

.card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 58px;
    z-index: 2;
    padding: 0 2rem;
    text-align: center;
    color: #fff;
}

.card-content h3 {
    font-size: clamp(1.9rem, 4.6vw, 2.75rem);
    font-weight: 900;
    margin: 0.3rem 0 1.08rem;
    line-height: 1.05;
}

.card-content h4,
.card-content h5 {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    font-weight: 700;
}

.card-content p {
    font-size: clamp(0.98rem, 2vw, 1.15rem);
    line-height: 1.3;
    margin-bottom: 1.15rem;
}

.featured-news {
    background: linear-gradient(135deg, #0f151f, #1b2636);
    color: #fff;
    padding: 66px 0;
}

.featured-news-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(12, 18, 28, 0.68);
}

.featured-media {
    min-height: 100%;
}

.featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-copy {
    padding: clamp(1.3rem, 2.8vw, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-kicker {
    font-family: var(--font-ui);
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    color: #d0b886;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.featured-copy h2 {
    font-family: var(--font-ui);
    font-size: clamp(1.6rem, 3.4vw, 2.7rem);
    line-height: 1.08;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.featured-copy p {
    font-size: clamp(0.99rem, 2vw, 1.12rem);
    color: rgba(255, 255, 255, 0.9);
}

.featured-actions {
    margin-top: 1.05rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.video-panel {
    position: relative;
    min-height: 792px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.video-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-panel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.video-panel-content {
    position: relative;
    z-index: 2;
}

.video-panel-content h2 {
    font-family: var(--font-ui);
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    letter-spacing: 0.07em;
    margin-bottom: 0.8rem;
}

.video-panel-content p {
    width: min(760px, 92vw);
    margin: 0 auto 1.4rem;
    font-size: clamp(1.12rem, 2.4vw, 1.4rem);
}

.gallery {
    padding: 72px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 220px;
    gap: 0.8rem;
}

.gallery-trigger {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
    width: 100%;
    height: 100%;
}

.gallery-trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-trigger:hover img {
    transform: scale(1.05);
}

.videos {
    padding: 72px 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.videos-grid iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.contact-panel {
    background: #ffffff;
    padding: 70px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
}

.contact-panel h2 {
    font-family: var(--font-ui);
    font-size: clamp(1.65rem, 3.4vw, 2.3rem);
    margin-bottom: 0.55rem;
}

.contact-panel p {
    font-size: clamp(1rem, 2.1vw, 1.15rem);
    margin-bottom: 1rem;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.contact-links {
    background: #f6f6f6;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 1rem;
    display: grid;
    gap: 0.65rem;
}

.contact-links a {
    display: block;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding-bottom: 0.45rem;
}

.contact-links a:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.site-map {
    padding: 68px 0;
}

.site-map h2 {
    text-align: center;
    font-family: var(--font-ui);
    font-size: clamp(1.7rem, 3.6vw, 2.25rem);
    letter-spacing: 0.07em;
    margin-bottom: 1.4rem;
}

.site-map-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
}

.site-map-grid h3 {
    font-family: var(--font-ui);
    font-size: 1.2rem;
    margin-bottom: 0.55rem;
}

.site-map-grid ul {
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.site-list {
    list-style: none;
    padding-left: 0;
}

.site-map-grid a {
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
    padding-bottom: 0.2rem;
}

.site-map-grid a:hover {
    opacity: 0.72;
}

.site-footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 2rem 0 1.3rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: center;
}

.footer-content p {
    font-family: var(--font-ui);
    font-size: 0.92rem;
}

.socials {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.socials img {
    width: 24px;
    height: 24px;
    transition: opacity 0.25s ease;
}

.socials a:hover img {
    opacity: 0.75;
}

.agency-signature {
    margin-top: 0.8rem;
    text-align: center;
    font-size: 0.86rem;
    letter-spacing: 0.03em;
    opacity: 0.85;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 242px;
    height: 48px;
    border: 2px solid currentColor;
    text-decoration: none;
    font-family: var(--font-ui);
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.btn-light {
    color: #fff;
}

.btn-light:hover {
    background: #fff;
    color: #000;
}

.btn-dark {
    color: #000;
}

.btn-dark:hover {
    background: #000;
    color: #fff;
}

.btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 2rem;
}

.lightbox[hidden] {
    display: none !important;
}

.lightbox.is-open {
    display: flex;
}

.lightbox-image {
    max-width: min(1080px, 88vw);
    max-height: 82vh;
    object-fit: contain;
    border-radius: 6px;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    border: 0;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
}

.lightbox-close {
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    font-size: 1.8rem;
    line-height: 1;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 54px;
    font-size: 2rem;
}

.lightbox-nav.prev {
    left: 16px;
}

.lightbox-nav.next {
    right: 16px;
}

@media (max-width: 1100px) {
    .nav-links {
        gap: 0.75rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .cards-grid,
    .videos-grid,
    .site-map-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .featured-news-wrap {
        grid-template-columns: 1fr;
    }

    .featured-media {
        max-height: 360px;
    }

    .feature-card {
        min-height: 560px;
    }

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

    .video-panel {
        min-height: 640px;
    }

    .hero {
        min-height: 760px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 0.4rem 0;
        background: rgba(0, 0, 0, 0.82);
        max-height: calc(100vh - 78px);
        overflow-y: auto;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 0.95rem 1rem;
        border: 0;
    }

    .hero-content {
        padding-top: 95px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        min-width: min(270px, 92vw);
    }

    .bio h2 {
        letter-spacing: 0.26em;
    }

    .gallery-trigger img {
        height: 170px;
    }

    .lightbox {
        padding: 0.9rem;
    }

    .lightbox-nav {
        width: 40px;
        height: 48px;
    }
}
