:root {
    --bg: #f3f1ea;
    --surface: #ffffff;
    --surface-2: #f7f8fb;
    --ink: #142033;
    --ink-soft: #4f5c6f;
    --line: #d8dee8;
    --line-strong: #b8c2d1;
    --brand: #0d223a;
    --brand-2: #16395f;
    --accent: #d86d2a;
    --accent-2: #f7b37a;
    --success: #1e7a5f;
    --shadow-sm: 0 8px 24px rgba(13, 26, 45, 0.08);
    --shadow-md: 0 16px 40px rgba(13, 26, 45, 0.12);
    --shadow-lg: 0 24px 60px rgba(13, 26, 45, 0.18);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Avenir Next", "Segoe UI Variable", "Segoe UI", "Helvetica Neue", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 0% 0%, rgba(216, 109, 42, 0.08) 0, transparent 38%),
        radial-gradient(circle at 100% 10%, rgba(22, 57, 95, 0.08) 0, transparent 44%),
        var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

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

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

p,
ul,
ol,
figure {
    margin: 0;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.1;
    font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
    letter-spacing: -0.02em;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin-inline: auto;
}

.sr-only {
    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: absolute;
    left: 0.75rem;
    top: -3rem;
    z-index: 1000;
    background: var(--ink);
    color: #fff;
    padding: 0.65rem 0.85rem;
    border-radius: 0.5rem;
    font-weight: 700;
}

.skip-link:focus {
    top: 0.75rem;
}

.utility-bar {
    background: linear-gradient(90deg, #0b1a2c, #143355 55%, #0d223a);
    color: #d8e2ef;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.utility-bar__inner {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.92rem;
}

.utility-bar a {
    color: #fff;
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(243, 241, 234, 0.86);
    border-bottom: 1px solid rgba(20, 32, 51, 0.08);
}

.nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 5.1rem;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.brand-link__logo {
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    border-radius: 999px;
    border: 2px solid rgba(13, 34, 58, 0.14);
    box-shadow: 0 4px 14px rgba(13, 26, 45, 0.12);
    background: #0d223a;
}

.brand-link__text {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}

.brand-link__name {
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.09em;
    color: var(--brand);
}

.brand-link__meta {
    font-size: 0.75rem;
    color: var(--ink-soft);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    background: #fff;
    padding: 0.55rem;
    border-radius: 0.65rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 1.3rem;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
}

.nav-toggle span + span:not(.sr-only) {
    margin-top: 0.25rem;
}

.nav-shell {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.nav-links a {
    padding: 0.65rem 0.85rem;
    border-radius: 999px;
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--brand);
    background: rgba(13, 34, 58, 0.06);
    outline: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 0.8rem 1.1rem;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    line-height: 1;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(13, 26, 45, 0.14);
    outline: none;
}

.btn--small {
    padding: 0.7rem 0.95rem;
    font-size: 0.86rem;
}

.btn--solid {
    background: var(--brand);
    color: #fff;
}

.btn--solid:hover,
.btn--solid:focus-visible {
    background: #102c4b;
}

.btn--accent {
    background: linear-gradient(135deg, var(--accent), #f0883b);
    color: #fff;
    box-shadow: 0 10px 24px rgba(216, 109, 42, 0.25);
}

.btn--accent:hover,
.btn--accent:focus-visible {
    background: linear-gradient(135deg, #c85f1f, #e87c32);
    box-shadow: 0 12px 28px rgba(216, 109, 42, 0.33);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #f4f7fb;
    border-color: rgba(255, 255, 255, 0.26);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.45);
}

.btn--light {
    background: #fff;
    color: var(--brand);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn--light:hover,
.btn--light:focus-visible {
    background: #f4f7fc;
}

.hero {
    position: relative;
    padding: 3rem 0 4.5rem;
    overflow: clip;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(13, 34, 58, 0.97), rgba(22, 57, 95, 0.96) 48%, rgba(11, 24, 40, 0.98)),
        radial-gradient(circle at 14% 14%, rgba(247, 179, 122, 0.18), transparent 38%);
}

.hero__bg::before,
.hero__bg::after {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
}

.hero__bg::before {
    top: 0;
    right: -10%;
    width: 55%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 10%, transparent 10% 20%, rgba(255, 255, 255, 0.04) 20% 30%, transparent 30% 40%, rgba(255, 255, 255, 0.03) 40% 50%, transparent 50% 60%);
    transform: skewX(-18deg);
    opacity: 0.7;
}

.hero__bg::after {
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.18;
}

.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.07fr 0.93fr;
    gap: 1.4rem;
    align-items: start;
}

.hero__copy {
    color: #f4f7fb;
    padding: 1.25rem 0.2rem 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #a8c2df;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 0.8rem;
    height: 0.12rem;
    background: linear-gradient(90deg, var(--accent), #f3c398);
    border-radius: 999px;
}

.hero h1 {
    margin-top: 0.85rem;
    font-size: clamp(2.1rem, 4.3vw, 3.9rem);
    line-height: 1.01;
    color: #fff;
    max-width: 14ch;
    text-wrap: balance;
}

.hero__lede {
    margin-top: 1rem;
    color: rgba(241, 246, 252, 0.9);
    font-size: 1.06rem;
    max-width: 56ch;
}

.hero__actions {
    margin-top: 1.35rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.chip-list {
    list-style: none;
    padding: 0;
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.chip-list li {
    color: #eaf0f8;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
    font-size: 0.86rem;
}

.hero__stats {
    margin-top: 1.35rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.hero__stats>div {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 0.85rem 0.95rem;
    min-height: 4.7rem;
}

.hero__stats dt {
    color: #9fbbd8;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.hero__stats dd {
    margin: 0.35rem 0 0;
    font-weight: 700;
    font-size: 0.93rem;
    color: #fff;
}

.hero__aside {
    display: grid;
    gap: 1rem;
}

.panel {
    background: var(--surface);
    border: 1px solid rgba(13, 34, 58, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 251, 255, 0.95)),
        var(--surface);
    padding: 1.1rem;
}

.contact-panel__header {
    padding-bottom: 0.85rem;
    margin-bottom: 0.9rem;
    border-bottom: 1px solid var(--line);
}

.contact-panel__header h2 {
    font-size: 1.2rem;
    color: var(--brand);
}

.contact-panel__header p {
    margin-top: 0.35rem;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.contact-list {
    display: grid;
    gap: 0.7rem;
}

.contact-list__row {
    display: grid;
    grid-template-columns: 7rem 1fr;
    gap: 0.65rem;
    align-items: start;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.contact-list__row span {
    font-weight: 700;
    color: var(--ink);
}

.contact-list__row a {
    color: var(--brand-2);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(22, 57, 95, 0.3);
    text-underline-offset: 2px;
}

.contact-list__row ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.35rem;
}

.contact-list__row--stack {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding-top: 0.35rem;
    border-top: 1px dashed var(--line);
}

.hero-mosaic {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: repeat(2, minmax(0, 8.6rem));
    gap: 0.75rem;
}

.hero-mosaic__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-md);
    background: #dfe6ee;
}

.hero-mosaic__item--tall {
    grid-row: 1 / span 2;
}

.hero-mosaic__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.hero-mosaic__item:hover img {
    transform: scale(1.03);
}

.hero-mosaic__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(9, 18, 29, 0.72));
}

.hero-mosaic__item figcaption {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.7rem;
    z-index: 1;
    color: #f4f7fb;
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.2;
}

.section {
    padding: 4.5rem 0;
}

.section--alt {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.75)),
        linear-gradient(135deg, rgba(216, 109, 42, 0.04), rgba(22, 57, 95, 0.04));
    border-top: 1px solid rgba(20, 32, 51, 0.06);
    border-bottom: 1px solid rgba(20, 32, 51, 0.06);
}

.section-head {
    max-width: 50rem;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-head h2 {
    margin-top: 0.65rem;
    font-size: clamp(1.7rem, 2.2vw, 2.6rem);
    color: var(--brand);
    text-wrap: balance;
}

.section-head__lede {
    margin-top: 0.8rem;
    color: var(--ink-soft);
    font-size: 1.02rem;
}

.section-head--left {
    margin: 0 0 1.4rem;
    text-align: left;
}

.section-head--left .eyebrow::before {
    display: none;
}

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

.service-card {
    background: var(--surface);
    border: 1px solid rgba(13, 34, 58, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(22, 57, 95, 0.14);
}

.service-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #dde4ee;
}

.service-card__body {
    padding: 1rem 1rem 1.05rem;
}

.service-card__tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.12em;
    margin-bottom: 0.35rem;
}

.service-card h3 {
    color: var(--brand);
    font-size: 1.25rem;
    margin-bottom: 0.9rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #ef9b58);
    box-shadow: 0 0 0 3px rgba(216, 109, 42, 0.11);
}

.feature-list--checks li {
    padding-left: 1.45rem;
}

.feature-list--checks li::before {
    width: 0.85rem;
    height: 0.85rem;
    top: 0.16rem;
    border-radius: 50%;
    background: rgba(30, 122, 95, 0.12);
    box-shadow: none;
}

.feature-list--checks li::after {
    content: "";
    position: absolute;
    left: 0.28rem;
    top: 0.45rem;
    width: 0.25rem;
    height: 0.45rem;
    border-right: 2px solid var(--success);
    border-bottom: 2px solid var(--success);
    transform: rotate(38deg);
}

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

.proof-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(13, 34, 58, 0.08);
    border-radius: var(--radius-md);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
}

.proof-card h3 {
    color: var(--brand);
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
}

.proof-card p {
    color: var(--ink-soft);
    font-size: 0.93rem;
}

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

.capability-grid>.panel {
    padding: 1rem;
}

.capability-grid h3 {
    color: var(--brand);
    font-size: 1.2rem;
    margin-bottom: 0.85rem;
}

.note-card {
    margin-top: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(22, 57, 95, 0.08);
    background:
        linear-gradient(180deg, rgba(13, 34, 58, 0.02), rgba(13, 34, 58, 0.02)),
        rgba(22, 57, 95, 0.03);
    padding: 0.9rem 1rem;
}

.note-card p {
    color: var(--ink-soft);
    font-size: 0.94rem;
}

.note-card strong {
    color: var(--brand);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.75rem;
}

.gallery-card {
    grid-column: span 4;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #dfe7f0;
    border: 1px solid rgba(13, 34, 58, 0.08);
    box-shadow: var(--shadow-sm);
    min-height: 14rem;
}

.gallery-card--wide {
    grid-column: span 8;
}

.gallery-card--tall {
    grid-row: span 2;
    min-height: 0;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(12, 22, 34, 0.78));
}

.gallery-card figcaption {
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.8rem;
    color: #fff;
    z-index: 1;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.2;
}

.gallery-card:hover img {
    transform: scale(1.04);
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
}

.split-grid>.panel {
    padding: 1rem;
}

.steps {
    list-style: none;
    padding: 0;
    counter-reset: steps;
    display: grid;
    gap: 0.8rem;
}

.steps li {
    border: 1px solid rgba(13, 34, 58, 0.08);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #fff, #fbfcff);
    padding: 0.85rem 0.9rem 0.9rem;
    box-shadow: var(--shadow-sm);
}

.steps h3 {
    color: var(--brand);
    font-size: 1rem;
}

.steps p {
    margin-top: 0.35rem;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.location-list {
    display: grid;
    gap: 0.65rem;
}

.location-card {
    border: 1px solid rgba(13, 34, 58, 0.08);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #fff, #f9fbff);
    padding: 0.85rem 0.95rem;
    box-shadow: var(--shadow-sm);
}

.location-card h3 {
    font-size: 1.03rem;
    color: var(--brand);
}

.location-card p {
    margin-top: 0.35rem;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.cta-panel {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 12% 15%, rgba(247, 179, 122, 0.2), transparent 35%),
        linear-gradient(145deg, #0d223a, #17395f 62%, #102845);
    color: #eef4fb;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow-md);
}

.cta-panel h3 {
    color: #fff;
    font-size: 1.2rem;
}

.cta-panel p {
    margin-top: 0.4rem;
    color: rgba(236, 244, 251, 0.85);
    font-size: 0.94rem;
}

.cta-panel__actions {
    margin-top: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.site-footer {
    background: #0a1422;
    color: #c6d0de;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
    min-height: 7rem;
    padding: 1.3rem 0;
    display: grid;
    grid-template-columns: 1.2fr auto auto;
    gap: 1rem;
    align-items: start;
}

.site-footer__name {
    font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
}

.site-footer__brand p:last-child {
    color: #b0bdcf;
    font-size: 0.92rem;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-content: start;
    justify-content: flex-end;
}

.site-footer__links a {
    color: #e4ebf5;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.5rem 0.7rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    outline: none;
}

.site-footer__meta {
    text-align: right;
    display: grid;
    gap: 0.35rem;
    font-size: 0.9rem;
}

.site-footer__meta a {
    color: #fff;
    font-weight: 700;
}

.reveal {
    animation: rise-in 560ms ease both;
}

.services-grid>.reveal:nth-child(2),
.proof-grid>.reveal:nth-child(2),
.gallery-grid>.reveal:nth-child(2),
.capability-grid>.reveal:nth-child(2) {
    animation-delay: 70ms;
}

.services-grid>.reveal:nth-child(3),
.proof-grid>.reveal:nth-child(3),
.gallery-grid>.reveal:nth-child(3) {
    animation-delay: 140ms;
}

.gallery-grid>.reveal:nth-child(4) {
    animation-delay: 210ms;
}

.gallery-grid>.reveal:nth-child(5) {
    animation-delay: 260ms;
}

.gallery-grid>.reveal:nth-child(6) {
    animation-delay: 310ms;
}

.gallery-grid>.reveal:nth-child(7) {
    animation-delay: 360ms;
}

.gallery-grid>.reveal:nth-child(8) {
    animation-delay: 410ms;
}

.gallery-grid>.reveal:nth-child(9) {
    animation-delay: 460ms;
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@media (max-width: 1100px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero__copy {
        padding-top: 0.5rem;
    }

    .hero h1 {
        max-width: 18ch;
    }

    .hero__aside {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: stretch;
    }

    .hero-mosaic {
        grid-template-rows: repeat(2, minmax(0, 9.2rem));
    }

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

    .gallery-card {
        grid-column: span 6;
    }

    .gallery-card--wide {
        grid-column: span 12;
    }

    .gallery-card--tall {
        grid-row: span 1;
    }
}

@media (max-width: 900px) {
    .utility-bar__inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 0.55rem 0;
        min-height: 0;
    }

    .nav {
        min-height: 4.65rem;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .nav-shell {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
        padding: 0.8rem;
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(13, 34, 58, 0.1);
        box-shadow: var(--shadow-lg);
    }

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

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0.2rem;
    }

    .nav-links a {
        border-radius: 0.7rem;
        padding: 0.8rem;
    }

    .hero {
        padding-top: 2rem;
    }

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

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

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

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

    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .site-footer__links,
    .site-footer__meta {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 700px) {
    .brand-link__logo {
        width: 2.65rem;
        height: 2.65rem;
    }

    .brand-link__name {
        font-size: 0.88rem;
    }

    .brand-link__meta {
        font-size: 0.7rem;
    }

    .hero h1 {
        font-size: clamp(1.85rem, 10vw, 2.5rem);
        max-width: 13ch;
    }

    .hero__lede {
        font-size: 0.98rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .hero-mosaic__item--tall {
        grid-row: auto;
    }

    .hero-mosaic__item {
        min-height: 10rem;
    }

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

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

    .gallery-card,
    .gallery-card--wide,
    .gallery-card--tall {
        grid-column: auto;
        grid-row: auto;
        min-height: 13.5rem;
    }

    .contact-list__row {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
