:root {
    --navy: #06233c;
    --navy-deep: #021522;
    --navy-soft: #0a3455;
    --orange: #ef5b18;
    --orange-light: #ff7a32;
    --white: #ffffff;
    --warm-white: #f7f5f1;
    --text: #132536;
    --muted: #657381;
    --border: rgba(255, 255, 255, .16);
    --shadow: 0 24px 70px rgba(0, 18, 32, .18);
    --serif: Georgia, "Times New Roman", serif;
    --sans: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--warm-white);
    font-family: var(--sans);
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 12px 18px;
    color: var(--white);
    background: var(--navy);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.section {
    padding: 100px 32px;
}

.section-inner {
    width: min(1240px, 100%);
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--orange);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.eyebrow-dark {
    color: var(--orange);
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid transparent;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: .25s ease;
}

.button-primary {
    color: var(--white);
    background: var(--orange);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--orange-light);
    transform: translateY(-2px);
}

.button-outline {
    color: var(--white);
    border-color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(8px);
}

.button-outline:hover,
.button-outline:focus-visible {
    color: var(--navy);
    background: var(--white);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    color: var(--white);
    background: rgba(2, 21, 34, .48);
    border-bottom: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(14px);
    transition: .3s ease;
}

.site-header.is-scrolled {
    background: rgba(2, 21, 34, .94);
    box-shadow: 0 10px 35px rgba(0,0,0,.2);
}

.header-inner {
    width: min(1440px, 100%);
    min-height: 88px;
    margin: 0 auto;
    padding: 0 34px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 36px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -.07em;
}

.brand-mark::first-letter {
    color: var(--orange);
}

.brand-name {
    display: flex;
    flex-direction: column;
    font-size: .64rem;
    line-height: 1.15;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.brand-name strong {
    color: var(--orange);
    font-weight: 700;
}

.primary-navigation {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.primary-navigation a {
    position: relative;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.primary-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: var(--orange);
    transition: right .25s ease;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after {
    right: 0;
}

.button-header {
    color: var(--white);
    border-color: var(--orange);
}

.button-header:hover {
    background: var(--orange);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 0;
    background: transparent;
}

.menu-toggle span:not(.screen-reader-text) {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: var(--white);
}

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-deep);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
    transition: opacity 1.5s ease, transform 8s linear;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-reflection,
.project-reflection {
    position: absolute;
    inset: -30% auto -30% -35%;
    width: 22%;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
        110deg,
        transparent,
        rgba(255,255,255,.15),
        transparent
    );
    transform: skewX(-16deg);
    animation: glassSweep 9s infinite ease-in-out;
}

@keyframes glassSweep {
    0%, 55% {
        left: -35%;
    }
    80%, 100% {
        left: 125%;
    }
}

.hero-content {
    position: relative;
    z-index: 5;
    width: min(1280px, 100%);
    margin: 0 auto;
    padding: 150px 54px 90px;
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(4.2rem, 8vw, 8.5rem);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.055em;
}

.hero h1 em {
    display: block;
    color: var(--orange);
    font-style: normal;
}

.hero-copy {
    max-width: 580px;
    margin: 34px 0 0;
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.hero-progress {
    position: absolute;
    z-index: 6;
    right: 36px;
    bottom: 36px;
    display: flex;
    gap: 10px;
}

.hero-progress span {
    width: 34px;
    height: 3px;
    background: rgba(255,255,255,.35);
}

.hero-progress span.is-active {
    background: var(--orange);
}

.trust-strip {
    position: relative;
    z-index: 12;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    color: var(--white);
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.1);
}

.trust-item {
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 34px;
    border-right: 1px solid rgba(255,255,255,.12);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong {
    font-family: var(--serif);
    font-size: 1.85rem;
    font-weight: 400;
}

.trust-item span {
    color: rgba(255,255,255,.72);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.statement-section {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 34px;
    padding: 54px 32px;
    background: var(--white);
}

.statement-line {
    height: 1px;
    background: #ccd4da;
}

.statement-words {
    display: flex;
    gap: 34px;
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.statement-words span {
    opacity: 0;
    transform: translateY(12px);
    animation: wordReveal .7s forwards;
}

.statement-words span:nth-child(2) {
    animation-delay: .25s;
}

.statement-words span:nth-child(3) {
    animation-delay: .5s;
}

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-section {
    background: var(--warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-copy h2,
.section-heading h2,
.professionals-section h2,
.contact-section h2 {
    margin: 0;
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.045em;
}

.about-copy h2 span,
.section-heading h2 span,
.contact-section h2 span {
    display: block;
    color: var(--orange);
    font-style: italic;
}

.about-copy p:not(.eyebrow) {
    max-width: 560px;
    color: #475765;
    font-size: 1.02rem;
}

.text-link {
    display: inline-flex;
    gap: 18px;
    align-items: center;
    margin-top: 18px;
    color: var(--navy);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.text-link span {
    color: var(--orange);
    font-size: 1.4rem;
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.about-images {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
}

.about-image {
    margin: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image-large {
    grid-row: 1 / 3;
}

.about-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.about-image:hover img {
    transform: scale(1.04);
}

.projects-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 20%, rgba(19,77,115,.42), transparent 30%),
        var(--navy-deep);
}

.section-heading-centered {
    max-width: 800px;
    margin: 0 auto 46px;
    text-align: center;
}

.projects-section .section-heading h2 {
    color: var(--white);
}

.section-heading > p:last-child {
    color: rgba(255,255,255,.7);
}

.project-window {
    position: relative;
    width: min(1120px, 100%);
    aspect-ratio: 16 / 8.4;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(81,183,237,.65);
    border-radius: 24px;
    background: #081b2a;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.05),
        0 35px 80px rgba(0,0,0,.45),
        0 0 50px rgba(32,155,220,.18);
}

.project-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s ease;
}

.project-slide.is-active {
    opacity: 1;
}

.project-slide img {
    height: 100%;
    object-fit: cover;
}

.project-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(1,13,22,.88),
        transparent 50%
    );
}

.project-caption {
    position: absolute;
    z-index: 4;
    left: 42px;
    bottom: 42px;
}

.project-caption span {
    display: block;
    margin-bottom: 5px;
    color: var(--orange);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.project-caption strong {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 400;
}

.project-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 50%;
    color: var(--white);
    background: rgba(3,24,43,.52);
    transform: translateY(-50%);
    cursor: pointer;
}

.project-control-prev {
    left: 20px;
}

.project-control-next {
    right: 20px;
}

.project-dots {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 20px;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.project-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid var(--white);
    border-radius: 50%;
    background: transparent;
}

.project-dots button.is-active {
    background: var(--white);
}

.instagram-note {
    max-width: 700px;
    margin: 24px auto 0;
    color: rgba(255,255,255,.55);
    font-size: .82rem;
    text-align: center;
}

.services-section {
    background: var(--white);
}

.services-section .section-heading {
    margin-bottom: 42px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.service-card {
    margin: 0;
    background: var(--warm-white);
    transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.service-card img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.service-card div {
    min-height: 100px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 18px;
}

.service-card h3 {
    margin: 0;
    color: var(--navy);
    font-size: .82rem;
    line-height: 1.35;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.service-card a {
    color: var(--orange);
    font-size: 1.5rem;
}

.professionals-section {
    color: var(--white);
    background:
        linear-gradient(110deg, rgba(2,21,34,.97), rgba(5,47,78,.88)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2000&q=85")
        center / cover;
}

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

.professionals-section h2 {
    color: var(--white);
}

.professionals-section p:not(.eyebrow) {
    max-width: 600px;
    color: rgba(255,255,255,.78);
    font-size: 1.08rem;
}

.contact-section {
    color: var(--white);
    background: var(--navy);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 90px;
    align-items: center;
}

.contact-section h2 {
    color: var(--white);
}

.contact-copy p {
    max-width: 520px;
    color: rgba(255,255,255,.75);
}

.site-footer {
    color: var(--white);
    background: var(--navy-deep);
}

.footer-inner {
    width: min(1320px, 100%);
    margin: 0 auto;
    padding: 46px 32px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    gap: 50px;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .7rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-brand > span:last-child {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    color: var(--orange);
}

.site-footer address {
    color: rgba(255,255,255,.68);
    font-size: .84rem;
    font-style: normal;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: rgba(255,255,255,.72);
    font-size: .84rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
}

.footer-bottom {
    padding: 18px 32px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,.45);
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: .72rem;
}

@media (max-width: 1100px) {
    .header-inner {
        grid-template-columns: auto auto auto;
    }

    .primary-navigation {
        position: absolute;
        top: 88px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 20px 32px;
        background: var(--navy-deep);
    }

    .primary-navigation.is-open {
        display: flex;
    }

    .primary-navigation a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .menu-toggle {
        display: block;
        justify-self: end;
        order: 2;
    }

    .button-header {
        order: 3;
    }

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

@media (max-width: 820px) {
    .section {
        padding: 76px 22px;
    }

    .header-inner {
        min-height: 78px;
        padding: 0 20px;
        gap: 14px;
    }

    .primary-navigation {
        top: 78px;
    }

    .brand-name {
        display: none;
    }

    .button-header {
        display: none;
    }

    .hero {
        min-height: 84vh;
    }

    .hero-content {
        padding: 130px 24px 80px;
    }

    .hero h1 {
        font-size: clamp(3.5rem, 17vw, 6rem);
    }

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

    .trust-item {
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .statement-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .statement-words {
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
    }

    .statement-line {
        display: none;
    }

    .about-grid,
    .professionals-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-images {
        min-height: 600px;
    }

    .project-window {
        aspect-ratio: 4 / 5;
    }

    .project-caption {
        left: 24px;
        bottom: 48px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .trust-item {
        text-align: center;
        border-right: 0;
    }

    .about-images {
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .about-image-large {
        grid-row: auto;
    }

    .about-image img {
        aspect-ratio: 4 / 3;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand,
    .footer-social {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
