:root {
    --bg: #f5f3ef;
    --surface: #ffffff;
    --surface-soft: #eeece6;
    --ink: #172126;
    --muted: #66737a;
    --line: rgba(23, 33, 38, 0.12);
    --accent: #28474d;
    --accent-soft: #dce7e5;
    --max-width: 1180px;
    --radius: 26px;
    --shadow: 0 28px 60px rgba(23, 33, 38, 0.08);
    --body-gradient-start: #fbfaf8;
    --header-bg: rgba(251, 250, 248, 0.84);
    --hero-overlay-a: rgba(8, 12, 14, 0.6);
    --hero-overlay-b: rgba(8, 12, 14, 0.25);
    --hero-overlay-c: rgba(8, 12, 14, 0.08);
    --hero-overlay-d: rgba(8, 12, 14, 0.74);
    --font-heading: "Newsreader", serif;
    --footer-bg: #fff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, var(--body-gradient-start) 0%, var(--bg) 100%);
    line-height: 1.6;
}

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

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

.skip-link {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 100;
    transform: translateY(-150%);
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-weight: 800;
    box-shadow: var(--shadow);
    transition: transform 180ms ease;
}

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

:focus-visible {
    outline: 3px solid rgba(40, 71, 77, 0.42);
    outline-offset: 4px;
}

main:focus {
    outline: none;
}

.shell {
    width: min(var(--max-width), calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: var(--header-bg);
    border-bottom: 1px solid rgba(23, 33, 38, 0.07);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 1.25rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.brand__mark {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--ink);
    color: #fff;
}

.brand__text {
    font-size: 0.96rem;
}

.site-nav {
    display: flex;
    gap: 1.8rem;
    color: var(--muted);
    font-size: 0.96rem;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.site-nav a.is-active,
.site-nav a:hover,
.text-link:hover {
    color: var(--ink);
}

.button,
.text-link {
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 1.45rem;
    border-radius: 999px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: #fff;
    font-weight: 700;
}

.button:hover {
    transform: translateY(-1px);
    background: var(--accent);
    border-color: var(--accent);
}

.button--small {
    min-height: 44px;
    padding: 0 1.15rem;
}

.text-link {
    font-weight: 700;
    color: var(--accent);
}

.hero {
    position: relative;
    min-height: calc(100svh - 82px);
    display: grid;
    align-items: end;
    overflow: clip;
}

.hero__image-wrap,
.hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__image {
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(11, 17, 20, 0.8) 0%, rgba(11, 17, 20, 0.44) 38%, rgba(11, 17, 20, 0.12) 100%),
        linear-gradient(180deg, rgba(11, 17, 20, 0.12) 0%, rgba(11, 17, 20, 0.56) 100%);
}

.hero__content,
.page-hero__content {
    position: relative;
    z-index: 1;
}

.hero__content {
    padding: 0 0 5.5rem;
    color: #fff;
    max-width: 44rem;
}

.hero__content h1,
.page-hero__content h1,
.section-heading h2,
.service-detail h2,
.project-showcase h2,
.about-grid h2,
.contact-panel h2,
.cta-band h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 0.98;
}

.hero__content h1 {
    margin: 0;
    font-size: clamp(3rem, 8vw, 6rem);
    max-width: 12ch;
}

.eyebrow {
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    color: inherit;
    opacity: 0.82;
}

.lead {
    max-width: 42rem;
    font-size: 1.1rem;
    color: inherit;
    opacity: 0.9;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.section {
    padding: 6rem 0;
}

.section--muted {
    background: rgba(255, 255, 255, 0.44);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: end;
    margin-bottom: 2.75rem;
}

.section-heading h2,
.page-hero__content h1,
.service-detail h2,
.project-showcase h2,
.about-grid h2,
.contact-panel h2,
.cta-band h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    max-width: 14ch;
}

.section-heading p:last-child,
.body-copy,
.service-detail__intro,
.contact-note,
.footer-copy {
    color: var(--muted);
    max-width: 40rem;
}

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

.service-block,
.project-card {
    display: grid;
    gap: 1rem;
}

.service-block__media,
.project-card img,
.service-detail__image img,
.about-grid__image img,
.project-gallery img {
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-block h3,
.project-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
}

.service-block p,
.project-card p {
    margin: 0;
    color: var(--muted);
}

.split-story {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
}

.quote-panel,
.contact-panel,
.cta-band {
    padding: 2rem;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.quote-panel p {
    margin: 0 0 1rem;
    font-size: 1.3rem;
    line-height: 1.35;
}

.quote-panel span {
    color: var(--muted);
}

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

.section--cta {
    padding-top: 0;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.page-hero {
    padding: 8rem 0 3rem;
}

.page-hero--compact {
    padding-top: 7rem;
}

.page-hero__content {
    max-width: 48rem;
}

.stacked-services,
.project-list {
    display: grid;
    gap: 2rem;
}

.service-detail,
.project-showcase,
.about-grid,
.contact-layout,
.site-footer__grid {
    display: grid;
    gap: 2rem;
}

.service-detail,
.about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

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

.service-detail__gallery figure {
    margin: 0;
}

.service-detail__gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: var(--focus-position, center);
    border-radius: calc(var(--radius) - 4px);
    box-shadow: var(--shadow);
}

.project-showcase {
    display: grid;
    grid-template-columns: minmax(16rem, 0.75fr) 1.25fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem;
    border-top: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.project-showcase__intro {
    max-width: 42rem;
}

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

.project-gallery__lead {
    grid-row: auto;
}

.project-gallery figure,
.project-card,
.service-block {
    margin: 0;
}

.project-lightbox-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.project-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.example-photo-grid,
.review-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.example-photo-grid figure,
.review-list blockquote {
    margin: 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.example-photo-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: calc(var(--radius) - 8px);
}

.example-photo-grid figcaption,
.review-list {
    display: grid;
    gap: 1rem;
}

.example-photo-grid span,
.review-list cite {
    color: var(--muted);
}

.review-stars {
    margin-bottom: 0.75rem;
    color: #f6b73c;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
}

.project-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: rgba(16, 24, 32, 0.86);
}

.project-lightbox[hidden] {
    display: none;
}

.project-lightbox img {
    max-width: min(100%, 72rem);
    max-height: 86vh;
    border-radius: calc(var(--radius) - 4px);
    box-shadow: var(--shadow);
}

.project-lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.about-grid__image,
.service-detail__image {
    justify-self: stretch;
}

.contact-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
}

.contact-card {
    gap: 0;
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
    box-shadow: var(--shadow);
}

.contact-panel--muted {
    background: var(--surface-soft);
}

.contact-form-card,
.contact-info-card {
    display: grid;
    gap: 1.35rem;
    padding: 1.35rem;
}

.contact-form-card {
    border-radius: calc(var(--radius) - 8px);
    background: var(--surface);
}

.contact-info-card .contact-note {
    margin: 0;
    color: var(--muted);
}

.contact-details {
    display: grid;
    gap: 0.8rem;
}

.contact-detail {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
    gap: 0.85rem;
    padding: 0.95rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.62);
}

.contact-detail strong {
    display: block;
    margin-bottom: 0.15rem;
    color: var(--ink);
}

.contact-detail__icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
}

.contact-form-card__intro {
    margin: -0.45rem 0 1.15rem;
    color: var(--muted);
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.honeypot {
    position: absolute;
    left: -100vw;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form label {
    display: grid;
    gap: 0.45rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 0.95rem 1rem;
    font: inherit;
    background: var(--surface);
    color: var(--ink);
}

.field-error {
    min-height: 1.4em;
    color: #8a3c2f;
    font-size: 0.92rem;
    font-weight: 500;
}

.flash {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
}

.flash--toast {
    position: fixed;
    right: max(1rem, calc((100vw - var(--max-width)) / 2));
    bottom: 1.25rem;
    z-index: 30;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    width: min(32rem, calc(100vw - 2rem));
    margin: 0;
    padding: 1.05rem 1rem;
    border: 1px solid rgba(35, 67, 57, 0.18);
    box-shadow: 0 24px 70px rgba(23, 33, 38, 0.18);
    animation: toast-in 360ms ease both;
}

.flash--toast::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    border-radius: 18px 0 0 18px;
    background: #2f6f58;
}

.flash__icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    margin-left: 0.25rem;
    border-radius: 999px;
    background: #2f6f58;
}

.flash__icon::after {
    content: "";
    width: 12px;
    height: 7px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translate(1px, -1px);
}

.flash__body {
    display: grid;
    gap: 0.15rem;
}

.flash__body strong {
    color: var(--ink);
    line-height: 1.2;
}

.flash__close {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    color: inherit;
    font: inherit;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

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

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

.flash--success {
    border: 1px solid rgba(47, 111, 88, 0.2);
    background: #dcefe7;
    color: #234339;
}

.flash--error {
    background: #f5e2dc;
    color: #763629;
}

.contact-note {
    margin-bottom: 0;
}

.site-footer {
    padding: 5.5rem 0 2.2rem;
    border-top: 1px solid rgba(23, 33, 38, 0.08);
    background: var(--footer-bg);
}

.site-footer__grid {
    grid-template-columns: 1.25fr 0.9fr 1.1fr 1.25fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

.site-footer__brand {
    display: grid;
    gap: 1.4rem;
}

.site-footer p {
    margin: 0 0 0.65rem;
    color: var(--muted);
    line-height: 1.7;
}

.site-footer a {
    color: inherit;
}

.site-footer a:hover {
    color: var(--ink);
}

.site-footer .brand {
    display: inline-flex;
    width: fit-content;
}

.footer-affiliation {
    display: grid;
    gap: 0.1rem;
    margin-top: 2.1rem !important;
    color: #281c62 !important;
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    font-weight: 800;
    line-height: 1.05 !important;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 6rem;
    padding-top: 1.5rem;
}

.legal-content,
.not-found-links {
    max-width: 48rem;
}

.legal-content h2 {
    margin: 2rem 0 0.5rem;
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    line-height: 1.05;
}

.legal-content p {
    color: var(--muted);
}

.not-found-links {
    display: grid;
    gap: 0.75rem;
}

.not-found-links a {
    padding: 1rem 0;
    border-top: 1px solid var(--line);
    color: var(--accent);
    font-weight: 700;
}

.footer-heading {
    margin: 0 0 1.35rem;
    color: var(--ink);
    font-size: clamp(1.7rem, 2.2vw, 2.25rem);
    font-weight: 800;
}

.text-link--light {
    color: rgba(255, 255, 255, 0.9);
}

.text-link--light:hover {
    color: #fff;
}

.v2-hero {
    position: relative;
    min-height: calc(100svh - 82px);
    display: grid;
    align-items: end;
    overflow: clip;
    background: #0f171b;
}

.v2-hero__media,
.v2-hero__image,
.v2-hero__veil {
    position: absolute;
    inset: 0;
}

.v2-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-hero__veil {
    background:
        linear-gradient(90deg, var(--hero-overlay-a) 0%, var(--hero-overlay-b) 46%, var(--hero-overlay-c) 100%),
        linear-gradient(180deg, rgba(8, 12, 14, 0.18) 0%, var(--hero-overlay-d) 100%);
}

.v2-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.55fr);
    gap: 2rem;
    align-items: end;
    padding-bottom: 3.75rem;
}

.v2-hero__copy {
    color: #fff;
    max-width: 42rem;
    padding: 4rem 0 1rem;
}

.v2-kicker {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.v2-hero__copy h1,
.v2-intro h2,
.v2-story__copy h2,
.v2-projects-intro h2,
.v2-cta__copy h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.v2-hero__copy h1 {
    font-size: clamp(3.2rem, 8vw, 6.4rem);
    max-width: 11ch;
}

.v2-lead {
    max-width: 36rem;
    margin: 1.5rem 0 0;
    font-size: 1.12rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.86);
}

.v2-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.v2-trust span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-weight: 800;
}

.v2-hero__actions {
    display: flex;
    gap: 1rem 1.25rem;
    flex-wrap: wrap;
    margin-top: 2.25rem;
}

.v2-hero__note {
    align-self: end;
    justify-self: end;
    max-width: 19rem;
    padding: 1.25rem 0 0;
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.v2-hero__note p,
.v2-hero__note a {
    margin: 0;
    color: inherit;
}

.v2-hero__note a {
    display: inline-block;
    margin-top: 0.75rem;
    font-weight: 700;
}

.v2-section--warm {
    background:
        radial-gradient(circle at top left, rgba(215, 227, 224, 0.9) 0%, rgba(215, 227, 224, 0) 34%),
        linear-gradient(180deg, #f8f6f2 0%, #efebe3 100%);
}

.v2-intro,
.v2-projects-intro,
.v2-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 26rem);
    gap: 2rem;
    align-items: end;
}

.v2-intro h2,
.v2-story__copy h2,
.v2-projects-intro h2,
.v2-cta__copy h2 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    max-width: 13ch;
}

.v2-intro p:last-child,
.v2-cta__copy p:last-child {
    margin: 0;
    color: var(--muted);
    max-width: 32rem;
}

.v2-service-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
    margin-top: 2.75rem;
}

.v2-service {
    display: grid;
    gap: 0.9rem;
}

.v2-service__media,
.v2-project__media,
.v2-story__image {
    overflow: clip;
    border-radius: 26px;
    background: #dde4e1;
}

.v2-service__media img,
.v2-project__media img,
.v2-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.v2-service__media {
    aspect-ratio: 0.9 / 1.05;
}

.v2-service:hover .v2-service__media img,
.v2-project:hover .v2-project__media img {
    transform: scale(1.03);
}

.v2-service__body h3,
.v2-project__meta h3 {
    margin: 0 0 0.4rem;
    font-size: 1.08rem;
}

.v2-service__body p,
.v2-project__meta p,
.v2-story__copy .body-copy {
    margin: 0;
    color: var(--muted);
}

.v2-story {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: center;
}

.v2-story__copy {
    max-width: 34rem;
}

.v2-story__image {
    min-height: 32rem;
    box-shadow: var(--shadow);
}

.v2-project-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    gap: 1.15rem;
    margin-top: 2.75rem;
}

.v2-project:first-child {
    grid-row: span 2;
}

.v2-project {
    display: grid;
    gap: 0.85rem;
    align-content: start;
}

.v2-project__media {
    min-height: 17rem;
    box-shadow: var(--shadow);
}

.v2-project:first-child .v2-project__media {
    min-height: 36rem;
}

.v2-cta {
    align-items: center;
    padding: 2.6rem 0;
    border-top: 1px solid var(--line);
}

.js .v2-hero__copy > *,
.js .v2-hero__note,
.js .v2-service,
.js .v2-project,
.js .v2-story__copy,
.js .v2-story__image {
    animation: v2-rise 700ms ease both;
}

.js .v2-hero__copy > *:nth-child(2) { animation-delay: 80ms; }
.js .v2-hero__copy > *:nth-child(3) { animation-delay: 140ms; }
.js .v2-hero__copy > *:nth-child(4) { animation-delay: 200ms; }
.js .v2-hero__note { animation-delay: 280ms; }

.js .v2-hero__copy > * {
    animation: none;
}

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

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

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

@media (max-width: 980px) {
    .site-header__inner,
    .section-heading,
    .split-story,
    .service-detail,
    .project-showcase,
    .about-grid,
    .contact-layout,
    .cta-band,
    .site-footer__grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .site-header__inner {
        grid-template-columns: 1fr auto;
        padding: 1rem 0;
    }

    .site-footer__bottom {
        display: grid;
        margin-top: 2.5rem;
    }

    .js .nav-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .site-nav {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.25rem;
        width: 100%;
        padding: 0.75rem 0 0.25rem;
    }

    .js .site-nav {
        display: none;
    }

    .js .site-nav.is-open {
        display: grid;
    }

    .site-nav a {
        padding: 0.75rem 0;
        border-top: 1px solid var(--line);
    }

    .js .site-header .button--small {
        grid-column: 1 / -1;
        display: none;
        width: 100%;
    }

    .site-header.is-nav-open .button--small {
        display: inline-flex;
    }

    .service-grid,
    .featured-projects,
    .project-gallery,
    .service-detail__gallery,
    .example-photo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .v2-hero__inner,
    .v2-intro,
    .v2-projects-intro,
    .v2-cta,
    .v2-story,
    .v2-project-grid {
        grid-template-columns: 1fr;
    }

    .v2-hero__note {
        justify-self: start;
    }

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

    .v2-project:first-child {
        grid-row: auto;
    }

    .v2-project:first-child .v2-project__media,
    .v2-story__image {
        min-height: 26rem;
    }
}

@media (max-width: 720px) {
    .hero {
        min-height: auto;
        padding-top: 6rem;
    }

    .hero__content {
        padding-bottom: 3rem;
    }

    .hero__content h1 {
        font-size: clamp(2.5rem, 14vw, 4rem);
    }

    .service-grid,
    .featured-projects,
    .project-gallery,
    .service-detail__gallery,
    .example-photo-grid,
    .review-list {
        grid-template-columns: 1fr;
    }

    .v2-hero {
        min-height: calc(100svh - 82px);
        padding-top: 5.5rem;
    }

    .v2-hero__inner {
        padding-bottom: 2rem;
    }

    .v2-hero__image {
        object-position: 72% center;
    }

    .v2-hero__veil {
        background:
            linear-gradient(90deg, rgba(8, 12, 14, 0.86) 0%, rgba(8, 12, 14, 0.52) 60%, rgba(8, 12, 14, 0.2) 100%),
            linear-gradient(180deg, rgba(8, 12, 14, 0.1) 0%, rgba(8, 12, 14, 0.82) 100%);
    }

    .v2-hero__copy {
        max-width: 18.5rem;
        padding-top: 1rem;
    }

    .v2-hero__copy h1 {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
        max-width: 100%;
    }

    .v2-lead {
        font-size: 1rem;
        line-height: 1.55;
    }

    .v2-hero__actions {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 1.5rem;
    }

    .v2-service-rail,
    .v2-project-grid {
        grid-template-columns: 1fr;
    }

    .v2-project__media,
    .v2-project:first-child .v2-project__media,
    .v2-story__image {
        min-height: 18rem;
    }

    .project-gallery__lead {
        grid-row: auto;
    }

    .section {
        padding: 4.5rem 0;
    }

    .flash--toast {
        right: 1rem;
        bottom: 1rem;
    }
}
