@font-face {
    font-family: "Suki Sans";
    src: url("../fonts/Manrope-VariableFont_wght.woff2") format("woff2");
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
}

@font-face {
    font-family: "Suki Serif";
    src: url("../fonts/Literata72pt-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

:root {
    --bg: #12070f;
    --bg-elevated: #1b0c17;
    --surface: rgba(39, 18, 32, 0.76);
    --surface-strong: rgba(55, 25, 44, 0.92);
    --text: #f9edf2;
    --muted: rgba(249, 237, 242, 0.7);
    --line: rgba(255, 143, 199, 0.18);
    --primary: #a2396b;
    --primary-soft: #ff8fc7;
    --primary-glow: rgba(255, 105, 180, 0.24);
    --secondary: #ffe7f3;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    --radius-xl: 36px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --content: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(162, 57, 107, 0.18), transparent 32%),
        radial-gradient(circle at 85% 14%, rgba(255, 143, 199, 0.12), transparent 18%),
        linear-gradient(180deg, #190912 0%, #12070f 42%, #0f0610 100%);
    font-family: "Suki Sans", sans-serif;
    line-height: 1.6;
}

body.admin-bar .site-header {
    top: 32px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    position: relative;
    overflow: clip;
}

.site-shell::before,
.site-shell::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: 0;
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.85;
}

.site-shell::before {
    width: 380px;
    height: 380px;
    right: -120px;
    top: 180px;
    background: rgba(162, 57, 107, 0.18);
}

.site-shell::after {
    width: 240px;
    height: 240px;
    left: -80px;
    top: 680px;
    background: rgba(79, 195, 247, 0.08);
}

.site-header,
.landing-page,
.site-footer,
.content-page {
    position: relative;
    z-index: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(18, 7, 15, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header__inner,
.hero-section__inner,
.statement-band__inner,
.capabilities-section,
.project-section,
.gallery-section,
.principles-section,
.process-section,
.site-footer,
.content-page__inner {
    width: min(calc(100% - 32px), var(--content));
    margin: 0 auto;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: 24px;
    flex-wrap: wrap;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.site-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #532540;
    filter: drop-shadow(0 8px 20px rgba(255, 95, 177, 0.18));
}

.site-brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
    color: var(--muted);
    font-size: 1.05rem;
}

.language-switcher {
    position: relative;
}

.language-switcher[open] .language-switcher__caret {
    transform: rotate(180deg);
}

.language-switcher__summary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 92px;
    padding: 10px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 143, 199, 0.16);
    background: rgba(255, 255, 255, 0.03);
    list-style: none;
    cursor: pointer;
}

.language-switcher__summary::-webkit-details-marker {
    display: none;
}

.language-switcher__flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(255, 143, 199, 0.12);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.language-switcher__value {
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.language-switcher__caret {
    width: 9px;
    height: 9px;
    margin-left: auto;
    border-right: 1.5px solid rgba(249, 237, 242, 0.7);
    border-bottom: 1.5px solid rgba(249, 237, 242, 0.7);
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.language-switcher__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    gap: 6px;
    min-width: 112px;
    padding: 8px;
    border-radius: 18px;
    border: 1px solid rgba(255, 143, 199, 0.16);
    background: rgba(25, 9, 18, 0.96);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
}

.language-switcher__option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: background 180ms ease, color 180ms ease;
}

.language-switcher__option:hover,
.language-switcher__option:focus-visible,
.language-switcher__option.is-active {
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 95, 177, 0.16), rgba(162, 57, 107, 0.2));
}

.site-nav a {
    transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
    transform: translateY(-1px);
}

.hero-section {
    padding: 72px 0 36px;
}

.hero-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    gap: 28px;
    align-items: stretch;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--primary-soft);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-copy h1,
.section-heading h2,
.statement-band__grid h2,
.site-footer h2,
.content-entry h1 {
    margin: 0;
    font-family: "Suki Serif", serif;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.028em;
}

.hero-copy h1 {
    font-size: clamp(2.05rem, 3.1vw, 3.15rem);
    max-width: 12.75ch;
}

.hero-copy__lead {
    max-width: 56ch;
    margin: 18px 0 0;
    font-size: 1.12rem;
    color: var(--muted);
}

.hero-actions,
.site-footer__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button--primary {
    color: #fff;
    background: linear-gradient(135deg, #ff5fb1 0%, #a2396b 52%, #6a2347 100%);
    box-shadow: 0 16px 40px rgba(162, 57, 107, 0.35);
}

.button--ghost {
    color: var(--text);
    border-color: rgba(255, 143, 199, 0.18);
    background: rgba(255, 255, 255, 0.03);
}

.hero-facts {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
    color: var(--secondary);
}

.hero-facts li {
    position: relative;
    padding-left: 22px;
}

.hero-facts li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-soft), var(--primary));
    box-shadow: 0 0 18px rgba(255, 95, 177, 0.55);
}

.hero-visual {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
}

.device-frame,
.gallery-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 143, 199, 0.18);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
}

.device-frame {
    width: min(100%, 390px);
    padding: 14px;
    border-radius: 40px;
    background:
        linear-gradient(180deg, rgba(255, 143, 199, 0.14), rgba(20, 8, 18, 0.88)),
        rgba(0, 0, 0, 0.35);
}

.device-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.device-frame img {
    border-radius: 28px;
}

.floating-card {
    position: absolute;
    max-width: 270px;
    padding: 22px 24px;
    border-radius: var(--radius-lg);
    background: rgba(30, 12, 24, 0.8);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.floating-card h2 {
    margin: 8px 0 8px;
    font-size: 1.32rem;
}

.floating-card p,
.floating-card span {
    margin: 0;
    color: var(--muted);
}

.floating-card--top {
    top: 28px;
    left: 0;
}

.floating-card--bottom {
    right: 0;
    bottom: 54px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.statement-band,
.capabilities-section,
.project-section,
.gallery-section,
.principles-section,
.process-section {
    padding: 56px 0;
}

.statement-band__inner,
.capabilities-section,
.project-section,
.gallery-section,
.principles-section,
.process-section {
    padding-top: 24px;
}

.statement-band__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
    gap: 28px;
    padding: 36px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 143, 199, 0.1), rgba(79, 195, 247, 0.06)),
        rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.statement-band__grid h2,
.section-heading h2,
.site-footer h2,
.content-entry h1 {
    font-size: clamp(1.72rem, 2.3vw, 2.28rem);
}

.statement-band__grid h2 {
    font-size: clamp(1.6rem, 2.1vw, 2.12rem);
    max-width: 13ch;
}

.statement-band__grid p {
    max-width: 44ch;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.72;
}

.statement-band__grid p,
.section-heading,
.project-showcase__copy p,
.project-metrics span,
.principles-grid p,
.process-card p,
.site-footer__meta,
.entry-content {
    color: var(--muted);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(240px, 0.92fr);
    gap: 12px 28px;
    align-items: end;
    margin-bottom: 28px;
}

.section-heading h2 {
    max-width: 15ch;
    grid-column: 1;
}

.section-heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 4px;
}

.section-heading::after {
    content: "";
    grid-column: 2;
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, rgba(255, 143, 199, 0.16), rgba(255, 143, 199, 0.04) 50%, transparent 100%);
    box-shadow: 0 0 24px rgba(255, 95, 177, 0.08);
}

.capability-grid,
.principles-grid,
.process-grid {
    display: grid;
    gap: 22px;
}

.capability-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capability-grid--features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capability-card,
.process-card,
.principles-grid article,
.content-entry {
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        rgba(17, 8, 15, 0.9);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.capability-card h3,
.principles-grid h3,
.process-card h3 {
    margin: 0 0 12px;
    font-size: 1.26rem;
}

.capability-card p,
.principles-grid p,
.process-card p {
    margin: 0;
}

.project-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
    gap: 34px;
    align-items: start;
}

.project-showcase__copy {
    padding: 34px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(162, 57, 107, 0.09), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 143, 199, 0.14);
}

.project-showcase__copy p {
    margin: 0 0 18px;
    font-size: 1.12rem;
}

.project-metrics {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.project-metrics div {
    display: grid;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.project-metrics strong {
    font-size: 1.08rem;
}

.project-showcase__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.project-showcase__gallery .gallery-card {
    overflow: hidden;
}

.project-showcase__gallery .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

.showcase-slider {
    position: relative;
    overflow: visible;
    padding-inline: 0;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.showcase-slider .swiper-wrapper {
    align-items: stretch;
    gap: 18px;
}

.showcase-card {
    width: 260px;
    height: auto;
    padding: 12px;
    margin: 0;
    border-radius: 28px;
    cursor: zoom-in;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
        rgba(17, 8, 15, 0.9);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.showcase-card--wide {
    width: 360px;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    aspect-ratio: 9 / 19;
    background: linear-gradient(180deg, rgba(29, 12, 22, 0.96), rgba(17, 8, 15, 0.96));
}

.showcase-card--wide img {
    aspect-ratio: 9 / 19;
}

.showcase-card:hover,
.showcase-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(255, 143, 199, 0.45);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.38);
    outline: none;
}

.showcase-card:focus-visible {
    outline: 2px solid var(--primary-soft);
    outline-offset: 4px;
}

body.has-lightbox-open {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.gallery-lightbox.is-open {
    display: flex;
    animation: gallery-lightbox-fade 180ms ease-out;
}

@keyframes gallery-lightbox-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 4, 7, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.gallery-lightbox__frame {
    position: relative;
    width: 100%;
    max-width: 1080px;
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox__figure {
    position: relative;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-height: 92vh;
}

.gallery-lightbox__image {
    max-width: min(92vw, 520px);
    max-height: 82vh;
    width: auto;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
    background: linear-gradient(180deg, rgba(29, 12, 22, 0.96), rgba(17, 8, 15, 0.96));
    object-fit: contain;
}

.gallery-lightbox__counter {
    font-family: "Suki Sans", system-ui, sans-serif;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.gallery-lightbox__close,
.gallery-lightbox__prev,
.gallery-lightbox__next {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(27, 12, 23, 0.72);
    color: var(--text);
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__prev:hover,
.gallery-lightbox__next:hover,
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__prev:focus-visible,
.gallery-lightbox__next:focus-visible {
    background: rgba(55, 25, 44, 0.92);
    border-color: rgba(255, 143, 199, 0.5);
    outline: none;
    transform: scale(1.05);
}

.gallery-lightbox__close {
    top: -8px;
    right: -8px;
}

.gallery-lightbox__prev {
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-lightbox__next {
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-lightbox__prev:hover,
.gallery-lightbox__prev:focus-visible {
    transform: translateY(-50%) scale(1.05);
}

.gallery-lightbox__next:hover,
.gallery-lightbox__next:focus-visible {
    transform: translateY(-50%) scale(1.05);
}

@media (max-width: 720px) {
    .gallery-lightbox {
        padding: 16px;
    }

    .gallery-lightbox__image {
        max-width: 94vw;
        max-height: 74vh;
        border-radius: 20px;
    }

    .gallery-lightbox__close {
        top: -4px;
        right: 4px;
        width: 40px;
        height: 40px;
    }

    .gallery-lightbox__prev {
        left: 4px;
        width: 40px;
        height: 40px;
    }

    .gallery-lightbox__next {
        right: 4px;
        width: 40px;
        height: 40px;
    }
}

.gallery-card {
    padding: 12px;
    border-radius: 28px;
}

.gallery-card img {
    width: 100%;
    border-radius: 20px;
}

.gallery-card--landscape {
    align-self: end;
}

.gallery-card--landscape img {
    aspect-ratio: 9 / 16;
}

.principles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: rgba(255, 143, 199, 0.12);
    color: var(--primary-soft);
    font-weight: 700;
}

.site-footer {
    padding: 48px 0 64px;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    padding: 38px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 143, 199, 0.14);
    background:
        radial-gradient(circle at top right, rgba(255, 143, 199, 0.16), transparent 28%),
        rgba(29, 12, 22, 0.88);
}

.site-footer__brand {
    width: 62px;
    height: 62px;
    margin-bottom: 14px;
    border-radius: 18px;
    overflow: hidden;
    filter: drop-shadow(0 10px 26px rgba(255, 95, 177, 0.2));
}

.site-footer__brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.site-footer__meta {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
    font-size: 1.05rem;
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.05rem;
}

.site-footer__legal a {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 143, 199, 0.34);
    transition: color 180ms ease, text-decoration-color 180ms ease;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
    color: var(--text);
    text-decoration-color: rgba(255, 143, 199, 0.7);
}

.content-page {
    padding: 84px 0 56px;
}

.content-page__inner {
    max-width: 860px;
}

.content-entry .entry-content > *:first-child {
    margin-top: 0;
}

.content-entry .entry-content > *:last-child {
    margin-bottom: 0;
}

.content-entry p,
.content-entry li {
    font-size: 1.12rem;
}

body.lang-vi .section-heading h2,
body.lang-vi .statement-band__grid h2,
body.lang-vi .site-footer h2,
body.lang-vi .content-entry h1 {
    font-size: clamp(1.5rem, 1.95vw, 1.92rem);
    line-height: 1.18;
    letter-spacing: -0.012em;
}

body.lang-vi .hero-copy h1 {
    font-size: clamp(1.78rem, 2.5vw, 2.58rem);
    max-width: 13.6ch;
    line-height: 1.13;
    letter-spacing: -0.01em;
}

@media (max-width: 1100px) {
    .hero-section__inner,
    .project-showcase,
    .statement-band__grid,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: unset;
        padding: 36px 0 12px;
    }

    .floating-card--top {
        left: 14px;
    }

    .floating-card--bottom {
        right: 14px;
        bottom: 10px;
    }
}

@media (max-width: 900px) {
    .capability-grid,
    .principles-grid,
    .process-grid,
    .project-showcase__gallery {
        grid-template-columns: 1fr;
    }

    .section-heading h2,
    .statement-band__grid h2,
    .site-footer h2,
    .content-entry h1 {
        max-width: unset;
    }

    .statement-band__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .section-heading {
        grid-template-columns: 1fr;
    }

    .section-heading::after {
        grid-column: 1;
    }

    .gallery-card--landscape {
        align-self: stretch;
    }

    .showcase-slider {
        overflow-x: auto;
        padding-bottom: 8px;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .showcase-slider .swiper-wrapper {
        padding-right: 18px;
    }
}

@media (max-width: 720px) {
    body.admin-bar .site-header {
        top: 46px;
    }

    .site-header__inner {
        min-height: unset;
        padding: 18px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        justify-content: flex-start;
        gap: 14px;
    }

    .language-switcher {
        align-self: flex-start;
    }

    .hero-section {
        padding-top: 40px;
    }

    .hero-copy h1 {
        font-size: clamp(2.15rem, 9.5vw, 3.25rem);
    }

    .hero-copy__lead {
        font-size: 1.08rem;
    }

    .device-frame {
        width: min(100%, 330px);
    }

    .floating-card {
        position: relative;
        inset: auto;
        max-width: none;
    }

    .hero-visual {
        display: grid;
        gap: 16px;
    }

    .statement-band__grid,
    .project-showcase__copy,
    .capability-card,
    .principles-grid article,
    .process-card,
    .site-footer__inner,
    .content-entry {
        padding: 24px;
    }

    .section-heading {
        gap: 12px;
        margin-bottom: 24px;
    }

    .section-heading::after {
        margin-bottom: 0;
    }

    .site-footer__meta {
        flex-direction: column;
    }

    .site-footer__legal {
        flex-direction: column;
        align-items: flex-start;
    }
}
