.card:focus-within {
    outline: none;
}

.card a,
.card button,
    background: #2a3038;
    border: 1px solid rgba(214, 178, 108, 0.35);
    color: #f4e6c6;
    z-index: 2;
}

.card:focus-within::after {
    box-shadow: 0 6px 18px rgba(3, 6, 12, 0.35);
}

@media (prefers-reduced-motion: reduce) {
    .card,
    .card-image img,
    .card::before,
    .card::after {
        transition: none !important;
        transform: none !important;

    border-color: #d6b26c;
    box-shadow: 0 0 0 3px rgba(214, 178, 108, 0.28);
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.cards .project-content h3 {
    margin: 0;
}

.cards .project-meta {
    display: grid;
    gap: 0.5rem;
    font-size: 0.96rem;
    font-weight: 300;
}

.cards .project-meta span {
    color: #d6b26c;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.72rem;
    display: inline-block;
    margin-bottom: 0.15rem;
}

.cards .project-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1.05rem;
    border-radius: 999px;
    border: 1px solid rgba(214, 178, 108, 0.55);
    background: rgba(214, 178, 108, 0.15);
    color: #8c6832;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    width: fit-content;
}

.cards .project-chip::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d6b26c;
}
    }
}
.split-section--watermark::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(11, 26, 43, 0) 0%, rgba(11, 26, 43, 0.22) 45%, rgba(16, 24, 32, 0.55) 100%);
    z-index: 1;
}

@media (max-width: 640px) {
    .about-cta .wrapper {
        padding: 2.25rem 1.75rem;
        border-radius: 22px;
    }
}
:root {
    --color-bg: #f3f4f6;
    --color-heading: #f1c40f;
    --color-text: #2d2d2d;
    --color-accent: #d99808;
    --max-width: 1200px;
    --font-primary: 'Montserrat', sans-serif;
    --header-height: 120px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-weight: 300;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin-top: 0;
    margin-bottom: 1.25rem;
    max-width: 70ch;
}

section {
    margin-bottom: 4rem;
}

.split-section,
.standard-section {
    margin-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.wrapper {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding: 0 1.5rem;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #0b1a2b;
    color: #d6b26c;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-page header {
    background: transparent;
    border-bottom: 1px solid transparent;
    color: #f4e6c6;
    box-shadow: none;
}

.home-page header.is-solid {
    background: #0b1a2b;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: #d6b26c;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

header nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    gap: 1.5rem;
}

.brand-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    display: inline-flex;
    width: 150px;
}

.brand-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    font-size: 1.35rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: inherit;
    font-weight: 600;
}

.brand-license {
    font-size: 0.82rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(214, 178, 108, 0.85);
    margin-top: 0.2rem;
}

.home-page header .brand-license {
    color: rgba(244, 230, 198, 0.85);
}

.home-page header.is-solid .brand-license {
    color: rgba(214, 178, 108, 0.85);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.94rem;
    font-weight: 600;
}

nav a {
    color: rgba(214, 178, 108, 0.95);
    transition: color 0.2s ease-in-out;
    font-weight: 600;
}

nav a:hover,
nav a:focus {
    color: #f4e6c6;
}

.home-page header nav a {
    color: rgba(244, 230, 198, 0.95);
}

.home-page header nav a:hover,
.home-page header nav a:focus {
    color: #ffffff;
}

.home-page header.is-solid nav a {
    color: rgba(214, 178, 108, 0.85);
}

.home-page header.is-solid nav a:hover,
.home-page header.is-solid nav a:focus {
    color: #f4e6c6;
}

main {
    padding: 0 0 5rem;
}

.home-page main {
    padding-bottom: 0;
}

body:not(.home-page) main {
    padding-top: calc(var(--header-height) + 3.25rem);
}

.projects-page {
    position: relative;
    background: url('../img/nice-blueprint.jpg') center/cover no-repeat fixed;
    color: #f4e6c6;
    min-height: 100vh;
    z-index: 0;
}

.projects-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(160deg, rgba(8, 18, 32, 0.34) 0%, rgba(6, 14, 27, 0.48) 42%, rgba(3, 10, 20, 0.62) 100%);
    box-shadow: inset 0 0 160px rgba(6, 12, 20, 0.4);
    mix-blend-mode: soft-light;
    backdrop-filter: saturate(115%) brightness(0.95);
    pointer-events: none;
    z-index: -1;
}

.projects-page main,
.projects-page footer {
    position: relative;
    z-index: 1;
}

.projects-page .wrapper {
    position: relative;
    z-index: 1;
}

.projects-page main {
    padding-bottom: 7rem;
}

.projects-page section {
    margin-bottom: 4rem;
}

.projects-page .section-title {
    color: #f9e9c9;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 600;
}

.projects-page p,
.projects-page .project-meta span,
.projects-page .project-meta p,
.featured-projects .project-content p,
.featured-projects .project-meta span,
.featured-projects .project-meta p {
    color: rgba(249, 233, 201, 0.78);
}

.projects-page .projects-showcase {
    position: relative;
}

.projects-page .projects-showcase::before {
    content: "";
    position: absolute;
    top: -72px;
    left: 50%;
    width: min(680px, 90%);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(214, 178, 108, 0.55), transparent);
    opacity: 0.55;
}

.projects-page .projects-showcase__intro {
    max-width: 780px;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.projects-page .projects-showcase__intro p {
    margin: 0 auto;
}

.projects-page .project-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    margin: 0 auto 2.75rem;
    padding: 1.15rem 1.75rem;
    border-radius: 999px;
    background: rgba(12, 24, 37, 0.72);
    border: 1px solid rgba(214, 178, 108, 0.25);
    box-shadow: 0 18px 42px rgba(2, 8, 15, 0.45);
    backdrop-filter: blur(12px);
}

.projects-page .project-filter {
    border: 1px solid rgba(214, 178, 108, 0.45);
    background: rgba(214, 178, 108, 0.12);
    color: #f9e9c9;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.65rem 1.6rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.projects-page .project-filter:hover,
.projects-page .project-filter:focus {
    background: rgba(214, 178, 108, 0.28);
    border-color: rgba(214, 178, 108, 0.75);
    outline: none;
}

.projects-page .project-filter.is-active {
    background: #f9e9c9;
    color: #0b1a2b;
    border-color: #f9e9c9;
    box-shadow: 0 12px 26px rgba(249, 233, 201, 0.35);
}

.projects-page .projects-grid,
.featured-projects .projects-grid {
    display: grid;
    gap: 2.75rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.projects-page .project-card,
.featured-projects .project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(140deg, rgba(15, 28, 44, 0.96) 0%, rgba(9, 18, 32, 0.94) 52%, rgba(6, 14, 27, 0.92) 100%);
    border: 1px solid rgba(214, 178, 108, 0.14);
    box-shadow: 0 28px 52px rgba(2, 8, 15, 0.45);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    animation: fadeInUp 0.65s ease both;
}

.projects-page .project-card::before,
.featured-projects .project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 18% 16%, rgba(214, 178, 108, 0.28), transparent 65%);
    opacity: 0.65;
    pointer-events: none;
}

.projects-page .project-card::after,
.featured-projects .project-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(214, 178, 108, 0.12);
    pointer-events: none;
}

.projects-page .project-card:hover,
.featured-projects .project-card:hover {
    transform: translate3d(0, -10px, 0);
    box-shadow: 0 36px 68px rgba(2, 8, 15, 0.55);
}

.projects-page .project-card img,
.featured-projects .project-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 1px solid rgba(214, 178, 108, 0.18);
    position: relative;
    z-index: 1;
    transition: transform 0.75s ease, filter 0.75s ease;
}

.projects-page .project-card:hover img,
.featured-projects .project-card:hover img {
    transform: scale(1.05);
    filter: saturate(115%);
}

.projects-page .project-content,
.featured-projects .project-content {
    position: relative;
    z-index: 1;
    padding: 1.75rem;
    display: grid;
    gap: 1rem;
}

.projects-page .project-chip,
.featured-projects .project-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1.05rem;
    border-radius: 999px;
    border: 1px solid rgba(214, 178, 108, 0.55);
    background: rgba(214, 178, 108, 0.15);
    color: #f9e9c9;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    width: fit-content;
}

.projects-page .project-chip::before,
.featured-projects .project-chip::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d6b26c;
}

.projects-page .project-content h3,
.featured-projects .project-content h3 {
    margin: 0;
    color: #fef7e5;
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.35;
}

.projects-page .project-meta,
.featured-projects .project-meta {
    display: grid;
    gap: 0.45rem;
    font-size: 0.96rem;
    font-weight: 300;
}

.projects-page .project-meta span,
.featured-projects .project-meta span {
    color: #d6b26c;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.72rem;
    display: inline-block;
    margin-bottom: 0.15rem;
}

.projects-page .project-meta p,
.featured-projects .project-meta p {
    margin: 0;
}

.projects-page .projects-grid .project-card:nth-child(3n + 1),
.featured-projects .projects-grid .project-card:nth-child(3n + 1) {
    animation-delay: 0.1s;
}

.projects-page .projects-grid .project-card:nth-child(3n + 2),
.featured-projects .projects-grid .project-card:nth-child(3n + 2) {
    animation-delay: 0.18s;
}

.projects-page .projects-grid .project-card:nth-child(3n),
.featured-projects .projects-grid .project-card:nth-child(3n) {
    animation-delay: 0.26s;
}

.about-page {
    background: radial-gradient(circle at 18% -12%, rgba(38, 61, 92, 0.24) 0%, rgba(14, 28, 46, 0.92) 40%, rgba(5, 12, 22, 1) 100%);
    color: #f4e6c6;
}

.about-page header {
    background: rgba(11, 26, 43, 0.94);
    border-bottom: 1px solid rgba(214, 178, 108, 0.22);
    box-shadow: 0 10px 24px rgba(2, 8, 15, 0.45);
}

.about-page nav a {
    color: rgba(214, 178, 108, 0.9);
}

.about-page nav a:hover,
.about-page nav a:focus {
    color: #f9e9c9;
}

.about-page main {
    padding-top: calc(var(--header-height) + 3.5rem);
    padding-bottom: 6rem;
}

.eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(214, 178, 108, 0.4);
    background: rgba(214, 178, 108, 0.18);
    color: #f9e9c9;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 600;
}

.eyebrow-tag::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d6b26c;
}

.about-hero {
    position: relative;
    padding: 3.5rem 0 4.5rem;
    overflow: hidden;
}

.about-hero__video {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.about-hero__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(125%) brightness(0.68) contrast(1.08) hue-rotate(-6deg);
    transform: scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
    .about-hero__video video {
        display: none;
    }
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 31, 52, 0.68) 0%, rgba(10, 22, 34, 0.62) 38%, rgba(6, 14, 27, 0.6) 100%);
    z-index: 0;
}

.about-hero::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -140px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(214, 178, 108, 0.3) 0%, transparent 68%);
    opacity: 0.6;
    z-index: 0;
}

.about-hero .wrapper {
    position: relative;
    z-index: 1;
}

.about-hero .wrapper::before {
    content: "";
    position: absolute;
    inset: -60px -80px;
    background-image: linear-gradient(rgba(214, 178, 108, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(214, 178, 108, 0.06) 1px, transparent 1px);
    background-size: 120px 120px, 120px 120px;
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
}

.about-hero__grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
}

.about-hero__content {
    display: grid;
    gap: 1.5rem;
    max-width: 620px;
}

.about-hero__content h1 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: #fef7e5;
}

.about-hero__content p {
    margin: 0;
    color: rgba(249, 233, 201, 0.78);
}

.about-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.about-hero__stat {
    min-width: 160px;
    display: grid;
    gap: 0.35rem;
}

.about-hero__stat-value {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #fef7e5;
}

.about-hero__stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(249, 233, 201, 0.65);
}

.about-hero__panel {
    position: relative;
    padding: 2.6rem;
    border-radius: 28px;
    background: linear-gradient(150deg, rgba(10, 24, 40, 0.92) 0%, rgba(7, 16, 28, 0.9) 100%);
    border: 1px solid rgba(214, 178, 108, 0.24);
    box-shadow: 0 28px 52px rgba(2, 8, 15, 0.45);
    backdrop-filter: blur(12px);
    display: grid;
    gap: 1.4rem;
    animation: fadeInUp 0.7s ease both;
}

.about-hero__panel h2 {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fef7e5;
}

.about-hero__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1rem;
}

.about-hero__list li {
    position: relative;
    padding-left: 1.6rem;
    color: rgba(249, 233, 201, 0.75);
    line-height: 1.6;
}

.about-hero__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d6b26c;
}

.about-pillars {
    position: relative;
    padding: 4.5rem 0;
}

.about-pillars::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 21, 35, 0.6) 0%, rgba(10, 21, 35, 0.85) 100%);
    z-index: 0;
}

.about-pillars .wrapper {
    position: relative;
    z-index: 1;
}

.about-pillars__intro {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
    display: grid;
    gap: 1.2rem;
}

.about-pillars__intro h2 {
    margin: 0;
    font-size: clamp(2rem, 4.8vw, 2.6rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fef7e5;
}

.about-pillars__intro p {
    margin: 0;
    color: rgba(249, 233, 201, 0.75);
}

.about-pillars__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-pillars__card {
    padding: 2rem;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(15, 28, 44, 0.92) 0%, rgba(9, 18, 32, 0.88) 100%);
    border: 1px solid rgba(214, 178, 108, 0.2);
    box-shadow: 0 24px 46px rgba(2, 8, 15, 0.4);
    display: grid;
    gap: 1rem;
    animation: fadeInUp 0.65s ease both;
}

.about-pillars__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(214, 178, 108, 0.18);
    border: 1px solid rgba(214, 178, 108, 0.28);
    color: #d6b26c;
    box-shadow: 0 12px 22px rgba(2, 8, 15, 0.35);
}

.about-pillars__icon svg {
    width: 30px;
    height: 30px;
}

.about-pillars__card h3 {
    margin: 0;
    font-size: 1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fef7e5;
}

.about-pillars__card p {
    margin: 0;
    color: rgba(249, 233, 201, 0.72);
}

.about-leadership {
    padding: 4.5rem 0;
}

.about-leadership__grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.about-leadership__figure {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 52px rgba(2, 8, 15, 0.45);
    border: 1px solid rgba(214, 178, 108, 0.2);
}

.about-leadership__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-leadership__figure figcaption {
    padding: 1.25rem;
    background: rgba(11, 26, 43, 0.85);
    color: rgba(249, 233, 201, 0.85);
    text-align: center;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.about-leadership__content {
    display: grid;
    gap: 1.5rem;
    color: rgba(249, 233, 201, 0.78);
}

.about-leadership__content h2 {
    margin: 0;
    font-size: clamp(1.8rem, 4.4vw, 2.4rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fef7e5;
}

.about-leadership__highlights {
    display: grid;
    gap: 1.25rem;
}

.about-leadership__highlights > div {
    position: relative;
    padding-left: 3.6rem;
}

.about-leadership__icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(214, 178, 108, 0.18);
    border: 1px solid rgba(214, 178, 108, 0.28);
    color: #d6b26c;
    box-shadow: 0 12px 22px rgba(2, 8, 15, 0.35);
}

.about-leadership__icon svg {
    width: 26px;
    height: 26px;
}

.about-leadership__highlights span {
    display: block;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.76rem;
    color: #d6b26c;
}

.about-leadership__highlights p {
    margin: 0.35rem 0 0;
    color: rgba(249, 233, 201, 0.72);
}

.about-timeline {
    position: relative;
    padding: 4.5rem 0;
}

.about-timeline::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 18, 32, 0.85) 0%, rgba(8, 18, 32, 0.92) 100%);
    z-index: 0;
}

.about-timeline .wrapper {
    position: relative;
    z-index: 1;
}

.about-timeline h2 {
    margin: 0 0 2.5rem;
    font-size: clamp(1.9rem, 4.4vw, 2.4rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fef7e5;
}

.about-timeline__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 2.4rem;
    position: relative;
}

.about-timeline__list::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(214, 178, 108, 0.7) 0%, rgba(214, 178, 108, 0.1) 100%);
}

.about-timeline__list li {
    display: grid;
    gap: 0.6rem;
    padding-left: 60px;
    position: relative;
}

.about-timeline__icon {
    position: absolute;
    left: 44px;
    top: -4px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(214, 178, 108, 0.16);
    border: 1px solid rgba(214, 178, 108, 0.26);
    color: #d6b26c;
    box-shadow: 0 14px 26px rgba(2, 8, 15, 0.35);
    transform: translateX(-50%);
}

.about-timeline__icon svg {
    width: 28px;
    height: 28px;
}

.about-timeline__list li::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 7px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #d6b26c;
    box-shadow: 0 0 0 6px rgba(214, 178, 108, 0.18);
}

.about-timeline__year {
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(214, 178, 108, 0.9);
}

.about-timeline__list h3 {
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fef7e5;
}

.about-timeline__list p {
    margin: 0;
    color: rgba(249, 233, 201, 0.72);
}

.about-credentials {
    padding: 4.5rem 0;
}

.about-credentials__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.about-credentials__card {
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(14, 28, 44, 0.9) 0%, rgba(7, 16, 28, 0.88) 100%);
    border: 1px solid rgba(214, 178, 108, 0.2);
    box-shadow: 0 24px 44px rgba(2, 8, 15, 0.4);
    display: grid;
    gap: 1rem;
}

.about-credentials__card h3 {
    margin: 0;
    font-size: 1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fef7e5;
}

.about-credentials__card ul {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.6rem;
    color: rgba(249, 233, 201, 0.75);
}

.about-credentials__card p {
    margin: 0;
    color: rgba(249, 233, 201, 0.75);
}

.about-credentials__card li::marker {
    color: rgba(214, 178, 108, 0.9);
}

.about-cta {
    padding: 4.5rem 0 5rem;
    text-align: center;
    background: linear-gradient(160deg, rgba(11, 25, 40, 0.55) 0%, rgba(7, 16, 28, 0.68) 100%), url('../img/constructioninmiami.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: screen;
    box-shadow: inset 0 1px 0 rgba(214, 178, 108, 0.12);
    position: relative;
    overflow: hidden;
}

.about-cta .wrapper {
    display: grid;
    gap: 1.5rem;
    justify-items: center;
    max-width: 760px;
    position: relative;
    z-index: 1;
    padding: 2.75rem 3rem;
    background: rgba(8, 18, 32, 0.78);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    border: 1px solid rgba(214, 178, 108, 0.18);
    box-shadow: 0 28px 48px rgba(4, 12, 24, 0.45);
}

.about-cta h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 2.8rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fef7e5;
}

.about-cta p {
    margin: 0;
    color: rgba(249, 233, 201, 0.78);
}

.about-cta .cta-button {
    border: 1px solid rgba(0, 0, 0, 0.75);
    color: #000000;
    background: rgba(244, 230, 198, 0.9);
    font-weight: 600;
}

.about-cta .cta-button:hover,
.about-cta .cta-button:focus {
    background: #000000;
    color: #f4e6c6;
}

.about-cta::before {
    content: "";
    position: absolute;
    inset: -80px;
    background-image: linear-gradient(rgba(214, 178, 108, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(214, 178, 108, 0.06) 1px, transparent 1px);
    background-size: 140px 140px, 140px 140px;
    opacity: 0.35;
    pointer-events: none;
}

.about-cta::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(214, 178, 108, 0.22) 0%, transparent 68%);
    opacity: 0.6;
    pointer-events: none;
}

.about-timeline .wrapper::after {
    content: "";
    position: absolute;
    inset: -60px -90px;
    background-image: linear-gradient(rgba(214, 178, 108, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(214, 178, 108, 0.04) 1px, transparent 1px);
    background-size: 100px 100px, 100px 100px;
    opacity: 0.45;
    z-index: -1;
    pointer-events: none;
}

.projects-hero {
    position: relative;
    padding: 2rem 0 5rem;
    overflow: hidden;
    color: #f9e9c9;
}

.projects-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 10%, rgba(214, 178, 108, 0.28), transparent 58%);
    opacity: 0.85;
    z-index: 0;
}

.projects-hero::after {
    content: "";
    position: absolute;
    bottom: -140px;
    right: -160px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(214, 178, 108, 0.25) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
}

.projects-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
}

.projects-hero__content {
    display: grid;
    gap: 1.5rem;
    max-width: 560px;
}

.projects-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(214, 178, 108, 0.45);
    background: rgba(214, 178, 108, 0.18);
    color: #f9e9c9;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 600;
    width: fit-content;
}

.projects-hero__eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d6b26c;
}

.projects-hero__title {
    margin: 0;
    font-size: clamp(2.4rem, 5.6vw, 3.4rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

.projects-hero__lead {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(249, 233, 201, 0.78);
    max-width: 58ch;
}

.projects-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.projects-hero__stat {
    min-width: 140px;
    display: grid;
    gap: 0.3rem;
}

.projects-hero__stat-value {
    font-size: clamp(1.6rem, 4.8vw, 2.4rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fef7e5;
}

.projects-hero__stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(249, 233, 201, 0.65);
}

.projects-hero__panel {
    position: relative;
    display: grid;
}

.projects-hero__panel::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(214, 178, 108, 0.32), transparent 70%);
    opacity: 0.8;
    pointer-events: none;
}


.projects-hero__panel-inner {
    position: relative;
    padding: 2.6rem;
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(11, 25, 40, 0.88) 0%, rgba(7, 16, 30, 0.94) 100%);
    border: 1px solid rgba(214, 178, 108, 0.24);
    box-shadow: 0 26px 48px rgba(2, 8, 15, 0.45);
    display: grid;
    gap: 2rem;
    backdrop-filter: blur(10px);
}

.projects-hero__panel-label {
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: rgba(249, 233, 201, 0.7);
}

.projects-hero__sectors {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.projects-hero__sector {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.2rem 1.35rem;
    border-radius: 18px;
    background: rgba(10, 21, 35, 0.78);
    border: 1px solid rgba(214, 178, 108, 0.16);
    box-shadow: 0 20px 34px rgba(2, 8, 15, 0.38);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.projects-hero__sector::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(214, 178, 108, 0.08);
    pointer-events: none;
}

.projects-hero__sector:hover {
    transform: translate3d(0, -6px, 0);
    border-color: rgba(214, 178, 108, 0.32);
    box-shadow: 0 28px 46px rgba(2, 8, 15, 0.45);
}

.projects-hero__sector-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(214, 178, 108, 0.6), rgba(214, 178, 108, 0.15));
    color: #0b1a2b;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    box-shadow: 0 6px 18px rgba(214, 178, 108, 0.45);
}

.projects-hero__sector-body h3 {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fef7e5;
    line-height: 1.35;
    word-break: break-word;
}

.projects-hero__sector-body p {
    margin: 0.35rem 0 0;
    color: rgba(249, 233, 201, 0.72);
    font-size: 0.85rem;
    line-height: 1.6;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 900px) {
    .projects-hero {
        padding: 1.5rem 0 4.5rem;
    }

    .projects-page .projects-showcase::before {
        width: min(520px, 92%);
    }

    .projects-hero__panel-inner {
        padding: 2.2rem;
        gap: 1.75rem;
    }

    .about-hero__grid {
        gap: 2.2rem;
    }

    .about-hero__panel {
        padding: 2.2rem;
    }

    .about-pillars__grid,
    .about-credentials__grid {
        gap: 1.6rem;
    }

    .about-leadership__highlights > div {
        padding-left: 3.2rem;
    }

    .about-timeline__icon {
        left: 38px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        margin-left: 0;
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .projects-hero__grid {
        gap: 2.25rem;
    }

    .projects-hero__stats {
        gap: 1.1rem;
    }

    .projects-page .project-filters {
        padding: 1rem 1.3rem;
        border-radius: 32px;
    }

    .projects-page .project-card {
        border-radius: 18px;
    }

    .projects-page .project-card img {
        height: 210px;
    }

    .projects-hero__sectors {
        grid-template-columns: 1fr;
    }

    .projects-hero__sector {
        padding: 1.05rem 1.1rem;
    }

    .projects-hero__sector-badge {
        width: 36px;
        height: 36px;
        font-size: 0.78rem;
    }

    .about-hero {
        padding: 3rem 0 4rem;
    }

    .about-hero__stats {
        gap: 1.1rem;
    }

    .about-hero__panel {
        padding: 2rem;
    }

    .about-pillars {
        padding: 4rem 0;
    }

    .about-leadership__grid {
        gap: 2rem;
    }

    .about-timeline__list {
        gap: 2rem;
    }

    .about-credentials__grid {
        grid-template-columns: 1fr;
    }

    .about-cta {
        padding: 4rem 0 4.5rem;
    }

    .about-leadership__highlights > div {
        padding-left: 3rem;
    }

    .about-timeline__list {
        padding-left: 12px;
    }

    .about-timeline__icon {
        left: 34px;
        width: 44px;
        height: 44px;
    }
}
.home-page main {
    padding-top: 0;
}

.hero-content {
    display: grid;
    gap: 1rem;
}

footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: #2c2c2c;
    padding: 2.5rem 0;
    color: #ffffff;
}

.footer-content {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    display: grid;
    gap: 0.75rem;
    justify-items: center;
    text-align: center;
}

.footer-copy {
    margin: 0;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact {
    display: grid;
    gap: 0.35rem;
}

.footer-contact p {
    margin: 0;
    letter-spacing: 0.05em;
}

.footer-contact a {
    color: var(--color-heading);
}

.footer-signature {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #d6b26c;
    font-weight: 600;
    text-align: right;
}

.footer-signature span {
    color: #d6b26c;
    font-weight: 700;
}

.projects-page .footer-signature,
.projects-page .footer-signature span {
    color: #d6b26c;
}

.section-title {
    color: #000000;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-subtitle {
    color: var(--color-accent);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0 0 0.75rem;
    display: inline-block;
}

.grid {
    display: grid;
    gap: 2rem;
}

.hero {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    padding: 2rem 0 0;
}

.hero-copy {
    margin: 1.5rem 0 0;
    color: #000000;
}

.hero-subtitle {
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: #000000;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: #000000;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.hero-content {
    display: grid;
    gap: 1.5rem;
}

.split-section {
    padding: 4.5rem 0;
    position: relative;
    z-index: 1;
}

.split-section--watermark {
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 1.5rem;
}

.split-section--watermark + .split-section {
    padding-top: 2.75rem;
}

.split-section--watermark .split-grid {
    position: relative;
    z-index: 2;
}

.split-section--watermark .split-content {
    margin-bottom: 1rem;
}

.section-bg-video {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.section-bg-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.section-bg-scrim {
    position: absolute;
    inset: 0;
    background: rgba(11, 26, 43, 0.6);
    z-index: 1;
}

.split-section--watermark .section-bg-scrim {
    background: linear-gradient(180deg, rgba(11, 26, 43, 0.65) 0%, rgba(11, 26, 43, 0.55) 50%, rgba(11, 26, 43, 0.3) 100%);
}

.credibility-strip {
    background: linear-gradient(135deg, rgba(14, 26, 40, 0.92) 0%, rgba(6, 14, 26, 0.92) 100%);
    padding: 2.75rem 0;
    border-bottom: 1px solid rgba(214, 178, 108, 0.18);
    position: relative;
    overflow: hidden;
}

.credibility-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(214, 178, 108, 0.16), transparent 60%), radial-gradient(circle at 85% 80%, rgba(214, 178, 108, 0.1), transparent 65%);
    pointer-events: none;
    opacity: 0.8;
}

.credibility-strip__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.5rem;
    justify-items: center;
}

.credibility-strip__label {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(249, 233, 201, 0.75);
}

.credibility-strip__logos {
    display: grid;
    gap: 2.5rem;
    grid-auto-flow: column;
    grid-auto-columns: minmax(110px, 1fr);
    align-items: center;
}

.credibility-strip__logos figure {
    margin: 0;
    display: grid;
    place-items: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.credibility-strip__logos img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.1) contrast(1.1) drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
    opacity: 0.85;
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.credibility-strip__logos figure:hover img,
.credibility-strip__logos figure:focus-within img {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

.process-section {
    background: linear-gradient(180deg, rgba(8, 18, 32, 0.94) 0%, rgba(8, 18, 32, 0.98) 100%);
    padding: 4.5rem 0 4.75rem;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(20, 36, 54, 0.4) 0%, rgba(8, 18, 32, 0.8) 100%);
    pointer-events: none;
}

.process-section__intro {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
    display: grid;
    gap: 1rem;
    color: rgba(249, 233, 201, 0.78);
}

.process-section__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process-card {
    background: linear-gradient(150deg, rgba(15, 30, 48, 0.92) 0%, rgba(9, 20, 36, 0.92) 100%);
    border: 1px solid rgba(214, 178, 108, 0.2);
    border-radius: 26px;
    padding: 2.25rem 2rem;
    display: grid;
    gap: 1.25rem;
    box-shadow: 0 26px 48px rgba(4, 10, 20, 0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.process-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(214, 178, 108, 0.18);
    border: 1px solid rgba(214, 178, 108, 0.28);
    color: #d6b26c;
    box-shadow: 0 18px 28px rgba(4, 10, 20, 0.35);
}

.process-card__icon svg {
    width: 30px;
    height: 30px;
}

.process-card__icon svg * {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-card h3 {
    margin: 0;
    font-size: 1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fef7e5;
}

.process-card p {
    margin: 0;
    color: rgba(249, 233, 201, 0.74);
}

.process-card:hover,
.process-card:focus-within {
    transform: translate3d(0, -8px, 0);
    border-color: rgba(214, 178, 108, 0.45);
    box-shadow: 0 32px 56px rgba(4, 10, 20, 0.45);
}

.process-card:focus-within {
    outline: none;
}

.process-card a,
.process-card button {
    position: relative;
    z-index: 1;
}

.process-card__icon svg {
    transition: transform 0.45s ease;
}

.process-card:hover .process-card__icon svg,
.process-card:focus-within .process-card__icon svg {
    transform: scale(1.08);
}

@media (max-width: 900px) {
    .credibility-strip__logos {
        grid-auto-flow: row;
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        justify-items: center;
    }
}

@media (max-width: 640px) {
    .credibility-strip {
        padding: 2rem 0;
    }

    .process-section {
        padding: 4rem 0 4.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .credibility-strip__logos figure,
    .credibility-strip__logos img,
    .process-card,
    .process-card__icon svg {
        transition: none !important;
        transform: none !important;
    }
}

.capabilities-stack {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(14, 26, 40, 0.94) 0%, rgba(10, 22, 36, 0.97) 52%, rgba(6, 14, 26, 0.98) 100%);
}

.capabilities-stack::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../img/nicedrawingguide.png') center/cover no-repeat;
    opacity: 0.6;
    mix-blend-mode: screen;
    filter: saturate(115%) brightness(0.92);
    pointer-events: none;
    z-index: 0;
}

.capabilities-stack::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(16, 24, 32, 0.45) 0%, rgba(16, 24, 32, 0.65) 48%, rgba(16, 24, 32, 0.78) 100%);
    pointer-events: none;
    z-index: 0;
}

.capabilities-stack > .split-section {
    position: relative;
    z-index: 1;
    background: transparent;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.capabilities-stack > .split-section:first-child {
    padding-bottom: 3.5rem;
}

.capabilities-stack > .split-section:last-child {
    padding-top: 3.5rem;
}

@media (prefers-reduced-motion: reduce) {
    .capabilities-stack::before {
        filter: none;
    }
}

.capabilities-stack .section-title {
    color: #d6b26c;
}

.split-dark {
    background: #0b1a2b;
    color: #f4e6c6;
}

.split-light {
    background: linear-gradient(180deg, rgba(16, 24, 32, 0.95) 0%, rgba(16, 24, 32, 0.98) 45%, rgba(16, 24, 32, 1) 100%);
    color: #f4e6c6;
}

.split-accent {
    background: linear-gradient(180deg, rgba(22, 38, 58, 0.95) 0%, rgba(22, 38, 58, 0.98) 45%, rgba(22, 38, 58, 1) 100%);
    color: #f4e6c6;
}

.split-section--capabilities,
.split-section--approach {
    position: relative;
    overflow: hidden;
}

.split-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.split-section.split-light .split-grid {
    grid-template-columns: minmax(400px, 1fr) minmax(400px, 1fr);
    align-items: stretch;
}

.split-section.split-light .split-media {
    height: 100%;
}

.split-section.split-light .split-media img {
    height: 100%;
    border-radius: 24px;
}

@media (max-width: 960px) {
    .split-section.split-light .split-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .split-section.split-light .split-media img {
        border-radius: 12px;
    }
}

.split-content {
    display: grid;
    gap: 1.5rem;
}

.hero-subtitle {
    display: inline-block;
    margin-left: 3.5rem;
    margin-top: 2.5rem;
}

.split-content p {
    margin: 0;
    color: inherit;
}

.split-dark .metrics .metric-card,
.split-light .metrics .metric-card,
.split-accent .metrics .metric-card {
    background: linear-gradient(150deg, rgba(12, 24, 38, 0.88) 0%, rgba(7, 16, 28, 0.9) 70%, rgba(6, 14, 26, 0.92) 100%);
    border-color: rgba(214, 178, 108, 0.32);
    color: #f4e6c6;
}

.split-media {
    position: relative;
}

.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 28px 52px rgba(0, 0, 0, 0.28);
}
.split-section.split-accent {
    padding: 5rem 0;
}

.split-section.split-accent .split-grid {
    grid-template-columns: minmax(460px, 1.35fr) minmax(340px, 1fr);
    align-items: stretch;
    gap: 3rem;
}

.split-section.split-accent .split-media {
    height: 100%;
    position: relative;
}

.split-section.split-accent .split-media img {
    height: 100%;
    min-height: 460px;
    border-radius: 36px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.38);
}

.split-section--approach .split-media img {
    box-shadow: 0 36px 76px rgba(0, 0, 0, 0.34);
}

@media (max-width: 1100px) {
    .split-section.split-accent .split-grid {
        grid-template-columns: minmax(380px, 1.15fr) minmax(320px, 1fr);
        gap: 2.5rem;
    }

    .split-section.split-accent .split-media img {
        min-height: 380px;
        border-radius: 28px;
    }
}

@media (max-width: 960px) {
    .split-section.split-accent .split-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .split-section.split-accent .split-media img {
        min-height: 320px;
        border-radius: 20px;
    }
}

.split-media:empty {
    display: none;
}

.split-light .split-media img,
.split-accent .split-media img {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.split-dark .hero-actions .cta-button,
.split-light .hero-actions .cta-button,
.split-accent .hero-actions .cta-button {
    border-color: rgba(0, 0, 0, 0.75);
    color: #000000;
    background: rgba(244, 230, 198, 0.9);
    font-weight: 600;
}

.split-dark .hero-actions .cta-button:hover,
.split-dark .hero-actions .cta-button:focus,
.split-light .hero-actions .cta-button:hover,
.split-light .hero-actions .cta-button:focus,
.split-accent .hero-actions .cta-button:hover,
.split-accent .hero-actions .cta-button:focus {
    background: #000000;
    color: #f4e6c6;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.feature-list li {
    display: grid;
    gap: 0.35rem;
    background: none;
    padding: 0;
    border: none;
}

.feature-list strong {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.feature-list span {
    font-weight: 300;
}

.checklist {
    display: grid;
    gap: 0.75rem;
}

.checklist div {
    padding-left: 1.75rem;
    position: relative;
    font-weight: 300;
}

.checklist div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d6b26c;
}


.standard-section {
    padding: 4.5rem 0;
}

.standard-section--featured {
    background: linear-gradient(180deg, rgba(11, 26, 43, 0.96) 0%, rgba(8, 18, 32, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.standard-section--featured .wrapper {
    position: relative;
    z-index: 1;
}

.standard-section--featured .section-title {
    color: #fef7e5;
}

.capabilities-stack .standard-section--featured {
    background: transparent;
    padding-top: 3.5rem;
}

.capabilities-stack .standard-section--featured::after {
    content: none;
}

.capabilities-stack .standard-section--featured::before {
    opacity: 0.6;
}

.capabilities-stack .section-title {
    color: #d6b26c;
}

.featured-projects {
    position: relative;
    z-index: 1;
    margin-top: 2.5rem;
}

.featured-projects::before {
    content: "";
    position: absolute;
    inset: -60px -40px -80px;
    background: url('../img/nicedrawingguide.png') center/cover no-repeat;
    opacity: 0.3;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: -1;
}

.featured-projects .projects-grid {
    justify-items: center;
    gap: 2.5rem;
}

.featured-projects .project-card {
    width: 100%;
    max-width: 360px;
}

.standard-section--cta {
    background: #101820;
    color: #f4e6c6;
    text-align: center;
    display: grid;
    place-content: center;
    gap: 1.5rem;
}

.standard-section--cta .section-title {
    color: #d6b26c;
}

.standard-section--cta p {
    margin: 0 auto 1.5rem;
    max-width: 60ch;
    color: #d6b26c;
}

.standard-section--cta .cta-button {
    align-self: center;
    border: 1px solid rgba(0, 0, 0, 0.75);
    color: #000000;
    background: rgba(244, 230, 198, 0.9);
    font-weight: 600;
}

.standard-section--cta .cta-button:hover,
.standard-section--cta .cta-button:focus {
    background: #000000;
    color: #f4e6c6;
}

.split-dark .hero-subtitle {
    color: #d6b26c;
}

.split-light .section-title,
.split-accent .section-title {
    color: #f4e6c6;
}

.split-light .feature-list strong,
.split-accent .feature-list strong {
    color: #f4e6c6;
}

.split-light .feature-list span,
.split-accent .feature-list span,
.split-accent .checklist div,
.split-light .checklist div {
    color: rgba(244, 230, 198, 0.85);
}

.split-light .feature-list li,
.split-accent .feature-list li {
    background: none;
    border: none;
}

.feature-list--inline {
    gap: 1.5rem;
}

.feature-list--inline li {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-list--inline li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.split-dark .metrics {
    margin: 0;
}

.split-dark .metrics .metric-card p,
.split-light .metrics .metric-card p,
.split-accent .metrics .metric-card p {
    color: rgba(244, 230, 198, 0.85);
}

.standard-section .section-title {
    color: #000000;
}

.standard-section p {
    color: #2d2d2d;
}

.standard-section.standard-section--cta .section-title {
    color: #d6b26c;
}

.standard-section.standard-section--cta p {
    color: #d6b26c;
}

.capabilities-stack .section-title {
    color: #d6b26c;
}
.contact-video-page {
    position: relative;
    padding: 4rem 0 5rem;
    background: #0b1a2b;
}

.contact-bg-video {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.contact-bg-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: hue-rotate(0deg) saturate(90%);
}

.contact-video-scrim {
    position: absolute;
    inset: 0;
    background: rgba(11, 26, 43, 0.55);
    z-index: 1;
}

.contact-video-page .wrapper,
.contact-video-page section {
    position: relative;
    z-index: 2;
}

.contact-video-page > .wrapper > section > .section-subtitle {
    color: rgba(214, 178, 108, 0.85);
}

.contact-video-page > .wrapper > section > .section-title,
.contact-video-page > .wrapper > section > p {
    color: #f4e6c6;
}


.hero-title {
    color: var(--color-heading);
}

.hero-content > p {
    max-width: 60ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.metrics {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.metric-card {
    position: relative;
    display: grid;
    gap: 0.9rem;
    padding: 1.85rem;
    border-radius: 22px;
    border: 1px solid rgba(214, 178, 108, 0.24);
    background: linear-gradient(150deg, rgba(12, 24, 38, 0.9) 0%, rgba(7, 16, 28, 0.92) 70%, rgba(6, 14, 26, 0.95) 100%);
    color: #f4e6c6;
    box-shadow: 0 24px 42px rgba(4, 10, 20, 0.48);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.metric-card::before {
    content: "";
    position: absolute;
    inset: -60% -40% 40% 60%;
    background: radial-gradient(circle at 0% 0%, rgba(214, 178, 108, 0.32) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.85) translate3d(-15%, -10%, 0);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.metric-card:hover,
.metric-card:focus-within {
    transform: translate3d(0, -9px, 0);
    box-shadow: 0 28px 56px rgba(214, 178, 108, 0.3), 0 22px 48px rgba(4, 10, 20, 0.55);
    border-color: rgba(214, 178, 108, 0.58);
}

.metric-card:hover::before,
.metric-card:focus-within::before {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
}

.metric-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(214, 178, 108, 0.18);
    border: 1px solid rgba(214, 178, 108, 0.26);
    color: #d6b26c;
    box-shadow: 0 16px 32px rgba(4, 10, 20, 0.45);
    position: relative;
    overflow: hidden;
}

.metric-card__icon::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle, rgba(214, 178, 108, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.45s ease, transform 0.45s ease;
    transform: scale(0.6);
}

.metric-card__icon svg {
    width: 28px;
    height: 28px;
}

.metric-card__icon svg * {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.45s ease;
}

.metric-card:hover .metric-card__icon::after,
.metric-card:focus-within .metric-card__icon::after {
    opacity: 0.85;
    transform: scale(1);
}

.metric-card:hover .metric-card__icon svg *,
.metric-card:focus-within .metric-card__icon svg * {
    transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
    .metric-card,
    .metric-card::before,
    .metric-card__icon::after,
    .metric-card__icon svg * {
        transition: none !important;
        transform: none !important;
    }
}

.metric-card h3 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fef7e5;
}

.metric-card span {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(249, 233, 201, 0.8);
    font-weight: 600;
}

.metric-card p {
    margin: 0;
    color: rgba(249, 233, 201, 0.72);
}

.cards {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
    position: relative;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #ffffff;
    border-radius: 18px;
    display: grid;
    gap: 1.25rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(214, 178, 108, 0.12), transparent 65%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 1;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: rgba(11, 26, 43, 0.08);
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 1;
}

.card:hover,
.card:focus-within {
    transform: translate3d(0, -10px, 0) rotateX(3deg) rotateY(-3deg);
    box-shadow: 0 28px 48px rgba(6, 12, 20, 0.35);
    border-color: rgba(214, 178, 108, 0.45);
}

.card:hover::before,
.card:focus-within::before,
.card:hover::after,
.card:focus-within::after {
    opacity: 1;
}

.card h3 {
    margin-top: 0;
    color: #000000;
    font-size: 1.2rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.card p {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.card-image {
    margin: -2rem -2rem 0;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.75s ease;
}

.card:hover .card-image img,
.card:focus-within .card-image img {
    transform: scale(1.05);
}

.highlight {
    border-left: 3px solid var(--color-heading);
    padding-left: 1.25rem;
    margin: 2rem 0;
    color: var(--color-text);
    background: #ffffff;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 6px 0 0 6px;
}

.leadership-figure {
    width: 100%;
    margin: 0 0 2rem;
}

.leadership-figure img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: 70% center;
    display: block;
}

.leadership-figure figcaption {
    margin-top: 1rem;
    text-align: center;
    line-height: 1.4;
    font-weight: 300;
}

.projects-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.project-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2.5rem 0 2rem;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(214, 178, 108, 0.18);
    background: linear-gradient(135deg, rgba(11, 26, 43, 0.2), rgba(11, 26, 43, 0.05));
    box-shadow: 0 10px 24px rgba(11, 26, 43, 0.18), inset 0 0 0 1px rgba(244, 230, 198, 0.06);
    justify-content: center;
}

.project-filter {
    border: 1px solid rgba(214, 178, 108, 0.45);
    background: rgba(214, 178, 108, 0.12);
    color: #0b1a2b;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.project-filter:hover,
.project-filter:focus {
    background: rgba(214, 178, 108, 0.35);
    border-color: rgba(214, 178, 108, 0.75);
    outline: none;
}

.project-filter.is-active {
    background: #0b1a2b;
    color: #f4e6c6;
    border-color: #0b1a2b;
    box-shadow: 0 8px 18px rgba(11, 26, 43, 0.2);
}

.project-card.is-hidden {
    display: none;
}

.project-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    overflow: hidden;
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-content {
    padding: 1.5rem;
    display: grid;
    gap: 0.75rem;
}

.project-content h3 {
    margin: 0;
    color: #000000;
    font-size: 1.1rem;
    font-weight: 300;
}

.project-meta {
    display: grid;
    gap: 0.35rem;
    font-size: 0.95rem;
    font-weight: 300;
}

.project-meta span {
    color: #000000;
    font-weight: 500;
}

.contact-layout {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.contact-card {
    padding: 2rem;
    border: 1px solid rgba(214, 178, 108, 0.24);
    background: #232830;
    border-radius: 12px;
    overflow: hidden;
    color: rgba(244, 230, 198, 0.85);
    box-shadow: 0 22px 48px rgba(5, 8, 14, 0.55);
}

.contact-card h2 {
    margin-top: 0;
    color: #d6b26c;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-card-logo {
    margin: 1.5rem -2rem -2rem;
}

.contact-card-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-methods {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.contact-card p {
    margin-top: 1.5rem;
}

.contact-card .cta-button {
    border: 1px solid rgba(0, 0, 0, 0.75);
    color: #000000;
    background: rgba(244, 230, 198, 0.9);
    font-weight: 600;
}

.contact-card .cta-button:hover,
.contact-card .cta-button:focus {
    background: #000000;
    color: #f4e6c6;
}

.contact-methods li {
    list-style: none;
}

.contact-methods li span {
    display: block;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #d6b26c;
    margin-bottom: 0.35rem;
}

form {
    display: grid;
    margin-top: 1.5rem;
    color: rgba(244, 230, 198, 0.75);
}

label {
    font-weight: 300;
    color: rgba(244, 230, 198, 0.82);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

input,
textarea {
    background: #2a3038;
    border: 1px solid rgba(214, 178, 108, 0.35);
    color: #f4e6c6;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    font-family: var(--font-primary);
    border-radius: 6px;
    box-shadow: 0 8px 18px rgba(4, 7, 12, 0.3);
}

.contact-card a {
    color: #f4e6c6;
}

.contact-card a:hover,
.contact-card a:focus {
    color: #ffffff;
}

.contact-card label {
    color: #d6b26c;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

textarea {
    min-height: 160px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: rgba(244, 230, 198, 0.55);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #d6b26c;
    box-shadow: 0 0 0 3px rgba(214, 178, 108, 0.28);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border: 1px solid var(--color-heading);
    color: var(--color-heading);
    font-family: var(--font-primary);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    background: transparent;
    cursor: pointer;
}

.cta-button:hover,
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border: none;
    color: #2c2c2c;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    background: var(--color-heading);
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.cta-button:hover,
.cta-button:focus {
    background: var(--color-accent);
    color: #ffffff;
}
