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

.section {
    position: relative;
    padding-block: var(--section-space);
}

.site-header {
    position: fixed;
    top: 1rem;
    left: 50%;
    z-index: 1000;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: min(calc(100% - 2rem), 1180px);
    height: var(--header-height);
    padding: 0.55rem 0.65rem 0.55rem 1.15rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: color-mix(in srgb, var(--bg) 72%, transparent);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(22px) saturate(1.35);
    -webkit-backdrop-filter: blur(22px) saturate(1.35);
    transform: translateX(-50%);
    transition:
        top 0.35s var(--ease-out),
        width 0.35s var(--ease-out),
        height 0.35s var(--ease-out),
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    top: 0.55rem;
    width: min(calc(100% - 1rem), 1080px);
    height: 66px;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    box-shadow: var(--shadow-md);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
}

.hero {
    position: relative;
    min-height: max(780px, 100svh);
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero__backdrop,
.hero__backdrop > img,
.ambient-grid,
.aurora,
.particle-field {
    position: absolute;
    inset: 0;
}

.hero__backdrop {
    overflow: hidden;
    pointer-events: none;
}

.hero__backdrop > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) sepia(1) saturate(5) hue-rotate(185deg) brightness(0.5);
    opacity: 0.14;
    mix-blend-mode: screen;
}

html[data-theme="light"] .hero__backdrop > img {
    opacity: 0.08;
    mix-blend-mode: multiply;
}

.hero__backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 88%, transparent) 42%, color-mix(in srgb, var(--bg) 45%, transparent) 100%),
        linear-gradient(180deg, transparent 56%, var(--bg) 100%);
}

.ambient-grid {
    opacity: 0.6;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black 12%, transparent 88%);
}

.aurora {
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.16;
}

.aurora--one {
    top: -18%;
    right: -5%;
    bottom: auto;
    left: auto;
    width: 52vw;
    height: 52vw;
    background: var(--accent);
}

.aurora--two {
    top: auto;
    right: auto;
    bottom: -20%;
    left: 32%;
    width: 36vw;
    height: 36vw;
    background: var(--accent-dark);
    opacity: 0.12;
}

.particle-field {
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.hero__grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(410px, 0.84fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5.5rem);
    min-height: max(780px, 100svh);
    padding-top: calc(var(--header-height) + 5rem);
    padding-bottom: 6rem;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__title {
    max-width: 920px;
    margin-top: 1.6rem;
    font-size: clamp(3.7rem, 5.2vw, 5.35rem);
    line-height: 0.94;
}

.hero__title span {
    display: block;
}

.hero__lede {
    max-width: 640px;
    margin-top: 1.4rem;
    color: var(--text-soft);
    font-size: clamp(1.05rem, 1.35vw, 1.25rem);
    line-height: 1.72;
}

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

.hero__proof {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    margin-top: clamp(2.4rem, 4.5vh, 3.8rem);
}

.hero__proof > div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero__proof strong {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.hero__proof span:not(.hero__proof-line) {
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.67rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__proof-line {
    width: 1px;
    height: 36px;
    background: var(--line-strong);
}

.hero-visual {
    position: relative;
    min-height: 600px;
    perspective: 1200px;
}

.scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-cue i {
    position: relative;
    display: block;
    width: 1px;
    height: 34px;
    overflow: hidden;
    background: var(--line-strong);
}

.marquee-band {
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--bg-elevated);
}

.marquee-band__track {
    display: flex;
    align-items: center;
    width: max-content;
    min-height: 66px;
    animation: marquee 32s linear infinite;
}

.marquee-band span {
    padding-inline: 2.6rem;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
}

.marquee-band i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 14px var(--accent);
}

.section-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    align-items: end;
    gap: 4rem;
    margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.section-intro h2 {
    max-width: 850px;
    margin-top: 1.1rem;
    font-size: clamp(2.8rem, 5.2vw, 5.6rem);
}

.section-intro > p {
    max-width: 500px;
    padding-bottom: 0.4rem;
    color: var(--text-soft);
    font-size: 1.05rem;
}

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

.project-card {
    display: grid;
    grid-template-rows: minmax(360px, 0.98fr) auto;
    min-height: 680px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface-soft);
}

.project-card:first-child {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
    grid-template-rows: none;
    min-height: 630px;
}

.project-card__preview {
    position: relative;
    display: grid;
    min-height: 360px;
    overflow: hidden;
    place-items: center;
    background:
        radial-gradient(circle at 30% 10%, var(--accent-soft), transparent 44%),
        linear-gradient(145deg, #0d0f17, #08090d);
    isolation: isolate;
}

html[data-theme="light"] .project-card__preview {
    background:
        radial-gradient(circle at 30% 10%, var(--accent-soft), transparent 44%),
        linear-gradient(145deg, #e6eafa, #f8f9fd);
}

.project-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(2rem, 4vw, 3.5rem);
}

.project-card__content h3 {
    margin-top: 1.5rem;
    font-size: clamp(2rem, 3vw, 3.5rem);
}

.project-card__content > p {
    max-width: 580px;
    margin-top: 1rem;
    color: var(--text-soft);
    font-size: 1rem;
}

.venture-heading {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: end;
    gap: 3rem;
    margin-top: clamp(6rem, 10vw, 9rem);
    margin-bottom: 2.5rem;
}

.venture-heading h3 {
    max-width: 680px;
    margin-top: 1rem;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.venture-heading > p {
    max-width: 540px;
    color: var(--text-soft);
}

.venture-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.services-section {
    overflow: hidden;
    border-block: 1px solid rgba(255, 255, 255, 0.08);
    background: #08090c;
    color: #f7f8fb;
}

html[data-theme="light"] .services-section,
html[data-theme="light"] .process-section {
    background: #0a0c12;
    color: #f7f8fb;
}

.services-section__orb {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 70vw;
    height: 28vw;
    border-radius: 50%;
    background: var(--accent);
    filter: blur(180px);
    opacity: 0.09;
    pointer-events: none;
    transform: translateX(-50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
    gap: clamp(4rem, 8vw, 8rem);
}

.about-visual {
    position: sticky;
    top: calc(var(--header-height) + 3rem);
}

.about-copy h2 {
    max-width: 720px;
    margin-top: 1rem;
    font-size: clamp(3rem, 5.4vw, 5.7rem);
}

.about-copy__lead {
    margin-top: 2rem !important;
    color: var(--text) !important;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.1vw, 2rem) !important;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.about-copy > p:not(.section-kicker) {
    max-width: 670px;
    margin-top: 1.25rem;
    color: var(--text-soft);
    font-size: 1.05rem;
}

.journey-list {
    margin-top: 3.2rem;
    border-top: 1px solid var(--line);
}

.journey-list article {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 1.25rem;
    padding-block: 1.7rem;
    border-bottom: 1px solid var(--line);
}

.proof-section {
    padding-block: clamp(4rem, 8vw, 7rem) var(--section-space);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: clamp(6rem, 10vw, 9rem);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface-soft);
}

.proof-stats > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(2.3rem, 5vw, 4.5rem) 1.5rem;
    text-align: center;
}

.proof-stats > div + div {
    border-left: 1px solid var(--line);
}

.principles-heading {
    max-width: 780px;
}

.principles-heading h2 {
    margin-top: 1rem;
    font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.stack-section {
    border-block: 1px solid var(--line);
    background: var(--bg-elevated);
}

.stack-layout {
    display: grid;
    grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: clamp(4rem, 8vw, 8rem);
}

.stack-groups {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
}

.stack-group {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: start;
    gap: 2rem;
    padding-block: 1.7rem;
    border-bottom: 1px solid var(--line);
}

.process-section {
    overflow: hidden;
    background: #08090c;
    color: #f7f8fb;
}

.process-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    padding-top: 3.5rem;
}

.process-track__line {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
}

.process-track__line span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--accent);
    box-shadow: 0 0 16px var(--accent);
    transition: width 1.2s var(--ease-out);
}

.process-track.is-visible .process-track__line span {
    width: 100%;
}

.journal-section {
    padding-block: var(--section-space);
}

.journal-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
}

.journal-copy h2 {
    margin-top: 1rem;
    font-size: clamp(3rem, 5vw, 5rem);
}

.journal-copy > p:not(.section-kicker) {
    max-width: 520px;
    margin-top: 1.5rem;
    color: var(--text-soft);
}

.journal-copy .button {
    margin-top: 2rem;
}

.journal-feature {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface-soft);
    transition: transform 0.5s var(--ease-out), border-color 0.35s ease, box-shadow 0.5s var(--ease-out);
}

.journal-feature:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: clamp(3rem, 8vw, 8rem);
}

.faq-heading {
    position: sticky;
    top: calc(var(--header-height) + 3rem);
}

.faq-heading h2 {
    margin-top: 1rem;
    font-size: clamp(2.8rem, 4.6vw, 4.8rem);
}

.faq-heading > p:not(.section-kicker) {
    max-width: 470px;
    margin-top: 1.3rem;
    color: var(--text-soft);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.contact-section {
    position: relative;
    overflow: hidden;
    padding-block: var(--section-space);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #07080b;
    color: #f7f8fb;
}

.contact-section__background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-section__background .ambient-grid {
    mask-image: radial-gradient(circle at center, black 0%, transparent 78%);
    opacity: 0.4;
}

.contact-orb {
    position: absolute;
    top: -30%;
    left: 50%;
    width: 70vw;
    height: 50vw;
    border-radius: 50%;
    background: var(--accent);
    filter: blur(210px);
    opacity: 0.08;
    transform: translateX(-50%);
}

.contact-heading {
    position: relative;
    max-width: 980px;
    margin: 0 auto clamp(4rem, 8vw, 6rem);
    text-align: center;
}

.contact-heading h2 {
    margin-top: 1.4rem;
    font-size: clamp(3.4rem, 7vw, 7rem);
}

.contact-heading > p:last-child {
    max-width: 650px;
    margin: 1.5rem auto 0;
    color: #aeb3bf;
    font-size: 1.1rem;
}

.contact-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    align-items: stretch;
    gap: 1.25rem;
}

.contact-details {
    display: grid;
    grid-template-rows: auto minmax(240px, 1fr);
    gap: 1.25rem;
}

.site-footer {
    padding-block: clamp(4rem, 8vw, 7rem) 2rem;
    border-top: 1px solid var(--line);
    background: var(--bg);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.7fr) repeat(3, minmax(120px, 0.6fr));
    gap: 3rem;
    padding-bottom: clamp(4rem, 7vw, 6rem);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--line);
}

.error-page {
    position: relative;
    display: grid;
    min-height: 100svh;
    overflow: hidden;
    place-items: center;
}

.error-page__inner {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 3rem), 850px);
    text-align: center;
}

.error-page h1 {
    margin-top: 1rem;
    font-size: clamp(3.5rem, 8vw, 8rem);
}

.error-page p:not(.eyebrow) {
    max-width: 600px;
    margin: 1.5rem auto 2rem;
    color: var(--text-soft);
}

@media (max-width: 1180px) {
    .site-nav a {
        padding-inline: 0.6rem;
    }

    .header-cta,
    .command-trigger kbd {
        display: none !important;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
        gap: 2rem;
    }

    .hero__title {
        font-size: clamp(3.7rem, 6.6vw, 5.8rem);
    }

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

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

    .process-track {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 3rem;
    }
}

@media (max-width: 920px) {
    :root {
        --header-height: 68px;
    }

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

    .site-header {
        top: 0.65rem;
        grid-template-columns: 1fr auto;
        width: calc(100% - 1.25rem);
        height: var(--header-height);
        padding-left: 1rem;
        border-radius: 18px;
    }

    .site-header.is-scrolled {
        top: 0.4rem;
        width: calc(100% - 0.8rem);
        height: 62px;
    }

    .site-nav {
        position: fixed;
        top: calc(var(--header-height) + 1rem);
        right: 0.65rem;
        left: 0.65rem;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.15rem;
        max-height: calc(100svh - var(--header-height) - 2rem);
        padding: 0.75rem;
        overflow-y: auto;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: color-mix(in srgb, var(--bg) 94%, transparent);
        box-shadow: var(--shadow-lg);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px) scale(0.98);
        transform-origin: top;
        transition: opacity 0.25s ease, transform 0.35s var(--ease-out);
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .site-nav a {
        display: flex;
        align-items: center;
        min-height: 50px;
        padding-inline: 1rem;
        border-radius: 12px;
        font-size: 1rem;
    }

    .menu-toggle {
        display: inline-flex !important;
    }

    .hero {
        min-height: auto;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: calc(var(--header-height) + 6rem);
        padding-bottom: 7rem;
    }

    .hero__content {
        max-width: 780px;
    }

    .hero__title {
        font-size: clamp(3.6rem, 10.8vw, 6.2rem);
    }

    .hero-visual {
        width: min(100%, 650px);
        min-height: 540px;
        margin: -1rem auto 0;
    }

    .scroll-cue {
        display: none;
    }

    .section-intro,
    .venture-heading,
    .about-grid,
    .stack-layout,
    .journal-grid,
    .faq-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section-intro,
    .venture-heading {
        align-items: start;
        gap: 1.5rem;
    }

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

    .project-card,
    .project-card:first-child {
        grid-column: auto;
        grid-template-columns: 1fr;
        grid-template-rows: minmax(360px, 0.95fr) auto;
        min-height: 680px;
    }

    .about-visual,
    .faq-heading {
        position: relative;
        top: auto;
    }

    .about-visual {
        width: min(100%, 560px);
        margin-inline: auto;
    }

    .stack-orbit {
        width: min(100%, 500px);
        margin-inline: auto;
    }

    .faq-layout {
        gap: 3rem;
    }

    .contact-details {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

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

@media (max-width: 680px) {
    :root {
        --section-space: 5.5rem;
    }

    .brand__wordmark {
        display: none;
    }

    .command-trigger {
        display: none !important;
    }

    .hero__grid {
        padding-top: calc(var(--header-height) + 4.5rem);
    }

    .hero__title {
        font-size: clamp(3.15rem, 15vw, 4.9rem);
    }

    .hero__lede {
        font-size: 1rem;
    }

    .hero__actions {
        align-items: stretch;
    }

    .hero__actions .button {
        justify-content: center;
        width: 100%;
    }

    .hero__proof {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .hero__proof-line {
        display: none;
    }

    .hero__proof strong {
        font-size: 1.2rem;
    }

    .hero__proof span:not(.hero__proof-line) {
        font-size: 0.55rem;
        line-height: 1.4;
    }

    .hero-visual {
        min-height: 440px;
    }

    .section-intro h2,
    .about-copy h2,
    .principles-heading h2,
    .journal-copy h2,
    .faq-heading h2 {
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

    .project-card,
    .project-card:first-child {
        grid-template-rows: 310px auto;
        min-height: 0;
    }

    .venture-grid,
    .services-grid,
    .proof-stats,
    .principles-grid,
    .process-track {
        grid-template-columns: 1fr;
    }

    .proof-stats > div + div {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .stack-group {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .process-track__line {
        display: none;
    }

    .process-track {
        padding-top: 0;
    }

    .journal-feature {
        grid-template-columns: 1fr;
    }

    .journal-feature__visual {
        min-height: 280px;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .social-dock,
    .back-to-top {
        display: none !important;
    }

    .site-footer {
        padding-bottom: 6rem;
    }
}

@media (max-width: 440px) {
    .container {
        width: calc(100% - 1.25rem);
    }

    .site-header {
        right: 0.4rem;
        left: 0.4rem;
        width: auto;
        transform: none;
    }

    .site-header.is-scrolled {
        width: auto;
    }

    .header-actions {
        gap: 0.25rem;
    }

    .hero__title {
        font-size: clamp(2.95rem, 14.5vw, 4rem);
    }

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

    .hero__proof > div {
        flex-direction: row;
        align-items: baseline;
        gap: 0.75rem;
    }

    .hero-visual {
        min-height: 380px;
    }

    .project-card,
    .project-card:first-child {
        grid-template-rows: 260px auto;
    }

    .project-card__content {
        padding: 1.4rem;
    }

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

    .footer-brand {
        grid-column: auto;
    }
}
