


:root {
    --ink: #191711;
    --muted: rgba(25, 23, 17, .72);
    --soft: rgba(25, 23, 17, .54);
    --line: rgba(37, 28, 17, .18);
    --page-bg: #f2e7d5;
    --page-bg-alt: #ead5b8;
    --portfolio-bg: #fbf7ef;
    --surface: #f8efe1;
    --surface-soft: rgba(255, 248, 235, .64);
    --surface-strong: #d69a61;
    --accent: #b96635;
    --accent-soft: #e2b27d;
    --dark-surface: #242018;
    --dark-ink: #fff5df;
    --glass: rgba(246, 232, 202, .2);
    --glass-strong: rgba(255, 247, 230, .82);
    --button-bg: rgba(24, 25, 19, .92);
    --button-ink: #fff8e9;
    --shadow: 0 24px 70px rgba(74, 43, 17, .12);
    --veil: linear-gradient(180deg, rgba(244, 222, 180, .2) 0%, rgba(248, 225, 182, .08) 46%, rgba(21, 16, 10, .18) 100%);
    --cursor-fill: #fff1d9;
    --cursor-dot: #392318;
    --theme-duration: 460ms;
    --header-height: 78px;
    --content-width: 1540px;
    --font-heading: "Forum", Georgia, serif;
    --font-body: "Manrope", "Segoe UI", sans-serif;
}

html[data-theme="dark"] {
    --ink: #fff3dd;
    --muted: rgba(255, 243, 221, .72);
    --soft: rgba(255, 243, 221, .52);
    --line: rgba(255, 235, 205, .17);
    --page-bg: #17130f;
    --page-bg-alt: #211810;
    --portfolio-bg: #1d1813;
    --surface: #241c15;
    --surface-soft: rgba(48, 34, 24, .72);
    --surface-strong: #7d482c;
    --accent: #e29157;
    --accent-soft: #8e5735;
    --dark-surface: #f0d7b5;
    --dark-ink: #21170f;
    --glass: rgba(33, 20, 13, .28);
    --glass-strong: rgba(34, 22, 16, .86);
    --button-bg: rgba(255, 244, 222, .94);
    --button-ink: #24150d;
    --shadow: 0 28px 80px rgba(0, 0, 0, .28);
    --veil: linear-gradient(180deg, rgba(18, 8, 4, .28) 0%, rgba(17, 8, 4, .08) 48%, rgba(10, 5, 3, .36) 100%);
    --cursor-fill: #ee9a58;
    --cursor-dot: #fff2db;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--page-bg);
    font-family: var(--font-body);
    transition: color var(--theme-duration) ease, background var(--theme-duration) ease;
}

body,
button,
input,
textarea {
    font-family: var(--font-body);
}

/* Joomla template layout */
.site,
.header-hero-wrapper,
.container-modules,
.site-top,
.site-mycontent,
.site-bottom,
.site-footer {
    width: 100%;
    max-width: none;
    margin: 0;
}

.container-modules,
.site-top,
.site-mycontent,
.site-bottom {
    padding: 0;
}

.container-modules,
.site-mycontent {
    display: block;
}

.site-header>.mod-custom,
.site-hero>.mod-custom,
.site-top>.mod-custom,
.site-mycontent>.mod-custom,
.site-bottom>.mod-custom,
.site-footer>.mod-custom {
    display: contents;
}

.site-top:empty,
.site-mycontent:empty,
.site-bottom:empty {
    display: none;
}

a {
    text-decoration: none !important;
}

body a:hover,
body a:focus {
    text-decoration: none;
}

button {
    color: inherit;
}

main {
    overflow: clip;
}

.content-section {
    position: relative;
    padding: clamp(96px, 11vw, 168px) 0;
    scroll-margin-top: var(--header-height);
}

.section-container {
    width: min(100% - 48px, var(--content-width));
    max-width: none;
    box-sizing: border-box;
}

.site-header__inner {
    box-sizing: border-box;
}

/* Custom cursor */
.custom-cursor {
    position: fixed;
    z-index: 10000;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 180ms ease;
}

.custom-cursor.is-visible {
    opacity: 1;
}

.custom-cursor__ball {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform, width, height;
}

.custom-cursor__ball--big {
    width: 30px;
    height: 30px;
    background: var(--cursor-fill);
    mix-blend-mode: difference;
    opacity: .82;
    transition: width 280ms cubic-bezier(.22, .72, .28, 1), height 280ms cubic-bezier(.22, .72, .28, 1), opacity 200ms ease, background var(--theme-duration) ease;
}

.custom-cursor__ball--small {
    width: 26px;
    height: 26px;
    overflow: visible;
    color: var(--cursor-dot);
    box-shadow: 0px 0px 20px -10px var(--cursor-fill) inset;
    transition: color var(--theme-duration) ease;
}

.custom-cursor__ball--small circle {
    fill: currentColor;
}

.custom-cursor.is-hovering .custom-cursor__ball--big {
    width: 92px;
    height: 92px;
    opacity: .38;
}

.custom-cursor.is-pressed .custom-cursor__ball--big {
    width: 22px;
    height: 22px;
}

@media (pointer: fine) {

    body.cursor-enabled,
    body.cursor-enabled a,
    body.cursor-enabled button,
    body.cursor-enabled input,
    body.cursor-enabled textarea,
    body.cursor-enabled select {
        cursor: none !important;
    }
}

/* Header */
.site-header {
    position: fixed;
    z-index: 500;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid var(--line);
    transition: background var(--theme-duration) ease, border-color var(--theme-duration) ease, box-shadow 260ms ease, transform 260ms ease;
}

.site-header.is-compact {
    background: color-mix(in srgb, var(--page-bg) 80%, transparent);
    box-shadow: 0 12px 40px rgba(36, 21, 10, .09);
    backdrop-filter: blur(18px) saturate(1.2);
}

.site-header__inner {
    display: grid;
    grid-template-columns: minmax(190px, 1fr) auto minmax(340px, 1fr);
    align-items: center;
    gap: 28px;
    width: min(100% - 48px, var(--content-width));
    min-height: var(--header-height);
    padding-inline: 0;
    transition: min-height 260ms ease;
}

.site-header.is-compact .site-header__inner {
    min-height: 64px;
}

.brand {
    display: inline-flex;
    position: relative;
    justify-self: start;
    align-items: center;
    gap: 7px;
    color: var(--ink);
    transition: color var(--theme-duration) ease;
}

.brand:hover {
    color: var(--ink);
}

.brand__name {
    display: block;
    flex: none;
    width: 173px;
    height: auto;
    color: inherit;
    filter: none;
    transition: filter 180ms ease, transform 180ms ease;
}

.brand__tagline {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    color: var(--muted);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-header__inner>.brand {
    transform: translateY(-10px);
}

.brand .brand__name path {
    fill: currentColor;
    transition: fill var(--theme-duration) ease;
}

html[data-theme="dark"] .brand img {
    filter: invert(1);
}

.brand::after {
    width: 1.5px;
    height: 17px;
    margin-top: 3px;
    content: "";
    background: currentColor;
    opacity: 0;
}

.brand.is-cursor-ready::after {
    animation: brand-cursor 1.05s steps(1, end) infinite;
}

.brand.is-entering .brand__name {
    animation: brand-reveal 680ms cubic-bezier(.22, .75, .24, 1) both;
}

.brand:hover .brand__name {
    animation: brand-glitch 240ms steps(2, end);
}

.site-hero.is-switching~* .brand__name,
.site-header.theme-pulse .brand__name {
    animation: brand-theme-pulse var(--theme-duration) ease;
}

.site-nav {
    display: flex;
    gap: clamp(22px, 2.1vw, 42px);
}

.site-nav a {
    display: inline-block;
    position: relative;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .065em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 180ms ease;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 1px;
    content: "";
    background: currentColor;
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a.is-scrambling {
    color: var(--ink);
    text-decoration: none;
}

.site-nav a:hover::after,
.site-nav a:focus::after {
    transform: scaleX(1);
}

.site-header__actions,
.site-header__mobile-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.phone {
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.phone:hover {
    color: var(--ink);
}

.outline-button {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    background: var(--glass);
    backdrop-filter: blur(10px);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.outline-button:hover {
    color: var(--ink);
    background: var(--glass-strong);
    transform: translateY(-1px);
}

.header-theme-toggle,
.menu-button {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    background: var(--glass);
    cursor: pointer;
}

.header-theme-toggle {
    position: relative;
    overflow: hidden;
}

.header-theme-toggle span {
    position: absolute;
    font-size: 16px;
    transition: opacity 240ms ease, transform 300ms ease;
}

.header-theme-toggle__moon {
    opacity: 0;
    transform: translateY(18px) rotate(35deg);
}

html[data-theme="dark"] .header-theme-toggle__sun {
    opacity: 0;
    transform: translateY(-18px) rotate(-35deg);
}

html[data-theme="dark"] .header-theme-toggle__moon {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

/* Hero */
.site-hero {
    position: relative;
    isolation: isolate;
    height: 100vh;
    height: 100svh;
    min-height: 620px;
    overflow: hidden;
    background: #c89a64;
}

.hero__background,
.hero__veil {
    position: absolute;
    inset: 0;
}

.hero__background {
    z-index: -3;
    width: 104%;
    height: 104%;
    overflow: hidden;
    transform: scale(1);
    transition: opacity calc(var(--theme-duration) * .7) ease, transform var(--theme-duration) cubic-bezier(.22, .72, .3, 1);
    will-change: opacity, transform;
}

.hero__background--day {
    opacity: 1;
}

.hero__background--night {
    opacity: 0;
}

html[data-theme="dark"] .hero__background--day {
    opacity: 0;
}

html[data-theme="dark"] .hero__background--night {
    opacity: 1;
}

.site-hero.is-switching .hero__background {
    transform: scale(1.04);
}

.hero__poster,
.hero__poster img,
.hero__video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.hero__poster img,
.hero__video {
    object-fit: cover;
    object-position: center;
}

.hero__poster {
    z-index: 0;
}

.hero__video {
    z-index: 1;
    opacity: 0;
    transition: opacity 280ms ease;
}

.hero__video.is-ready {
    opacity: 1;
}

.hero__veil {
    z-index: -2;
    background: var(--veil);
    transition: background var(--theme-duration) ease;
}

.hero__content {
    display: flex;
    position: relative;
    z-index: 2;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(100% - 40px, 1160px);
    height: 100%;
    padding-top: clamp(80px, 10vh, 120px);
    padding-bottom: clamp(128px, 18vh, 190px);
    text-align: center;
    transform: translateY(clamp(-250px, -22vh, -205px));
}

.hero__content::before {
    position: absolute;
    z-index: -1;
    top: 12%;
    right: 4%;
    bottom: 11%;
    left: 4%;
    content: "";
    background: radial-gradient(ellipse at center, rgb(234 194 157 / 72%) 0%, rgb(232 186 145 / 46%) 36%, rgba(232, 199, 168, 0.16) 58%, transparent 75%);
    pointer-events: none;
}

html[data-theme="dark"] .hero__content::before {
    background: radial-gradient(ellipse at center, rgba(18, 9, 5, .82) 0%, rgba(18, 9, 5, .56) 40%, transparent 74%);
}

.hero__eyebrow {
    margin: 0 0 17px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.hero__eyebrow::after {
    display: block;
    width: 100%;
    height: 1px;
    margin: 8px auto 0;
    content: "";
    background: currentColor;
    opacity: .48;
}

.site-hero h1 {
    max-width: 900px;
    margin: 0;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(46px, 4.7vw, 76px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.045em;
    text-wrap: balance;
    text-shadow: 0 2px 28px rgba(255, 239, 208, .34);
    transition: color var(--theme-duration) ease;
}

.site-hero h1 em {
    color: var(--muted);
    font-style: normal;
    font-weight: 400;
}

.hero__lead {
    max-width: 680px;
    margin: 21px 0 0;
    color: var(--muted);
    font-size: clamp(14px, 1.25vw, 18px);
    line-height: 1.55;
    text-shadow: 0 1px 16px rgba(255, 243, 219, .55);
    transition: color var(--theme-duration) ease;
}

html[data-theme="dark"] .site-hero h1,
html[data-theme="dark"] .hero__lead {
    text-shadow: 0 2px 24px rgba(0, 0, 0, .46);
}

.theme-control {
    display: flex;
    gap: 4px;
    margin-top: 25px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--glass);
    box-shadow: 0 12px 40px rgba(31, 19, 9, .08);
    backdrop-filter: blur(12px);
}

.theme-control__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 96px;
    min-height: 42px;
    padding: 0 15px;
    border: 0;
    border-radius: 999px;
    color: var(--muted);
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.theme-control__button.is-active {
    color: var(--ink);
    background: var(--glass-strong);
    box-shadow: 0 5px 18px rgba(28, 17, 9, .12);
}

.theme-control__button:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 3px;
}

.theme-control__button:disabled {
    cursor: wait;
}

.theme-control__icon {
    font-size: 17px;
    line-height: 1;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    min-height: 50px;
    margin-top: 18px;
    padding: 0 25px;
    border: 0;
    border-radius: 999px;
    color: var(--button-ink);
    background: var(--button-bg);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    line-height: 50px;
    transition: transform 180ms ease;
}

.hero__cta:hover {
    color: var(--button-ink);
    transform: translateY(-2px);
}

.hero__cta span {
    font-size: 17px;
    font-weight: 400;
}

.hero__scroll {
    position: absolute;
    bottom: 14px;
    left: 50%;
    z-index: 2;
    display: block;
    width: 48px;
    height: 62px;
    color: var(--ink);
    transform: translateX(-50%);
    transition: color var(--theme-duration) ease, opacity 180ms ease;
}

.hero__scroll:hover {
    color: var(--ink);
    opacity: .62;
}

.hero__scroll span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 32px;
    height: 17px;
    margin-left: -16px;
    opacity: 0;
    transform: translateY(-8px) scale(.66);
    transform-origin: center bottom;
    filter: blur(2px);
    animation: hero-scroll-arrow 2.4s cubic-bezier(.34, .05, .24, 1) infinite;
}

.hero__scroll span::before,
.hero__scroll span::after {
    position: absolute;
    bottom: 2px;
    width: 19px;
    height: 1px;
    content: "";
    background: currentColor;
}

.hero__scroll span::before {
    right: 50%;
    transform: rotate(30deg);
    transform-origin: right center;
}

.hero__scroll span::after {
    left: 50%;
    transform: rotate(-30deg);
    transform-origin: left center;
}

.hero__scroll span:nth-child(2) {
    top: 15px;
    animation-delay: 180ms;
}

.hero__scroll span:nth-child(3) {
    top: 30px;
    animation-delay: 360ms;
}

.hero__scroll:hover span {
    animation-duration: 1.65s;
}

/* Shared editorial */
.section-heading {
    display: grid;
    grid-template-areas:
        "index index"
        "title description";
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, .55fr);
    align-items: end;
    column-gap: clamp(48px, 7vw, 112px);
    row-gap: clamp(30px, 4vw, 56px);
    margin-bottom: clamp(54px, 7vw, 100px);
}

.section-heading .section-index {
    display: flex;
    grid-area: index;
    align-items: center;
    gap: 18px;
    width: 100%;
}

.section-heading .section-index::after {
    flex: 1;
    height: 1px;
    content: "";
    background: var(--line);
}

.section-index,
.card-kicker {
    margin: 0;
    color: var(--soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.section-heading h2,
.project-cta h2 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(56px, 7.2vw, 112px);
    font-weight: 400;
    line-height: .82;
    letter-spacing: -.055em;
}

.section-heading h2 {
    grid-area: title;
    min-width: 0;
}

.section-heading h2 em,
.project-cta h2 em {
    color: var(--muted);
    font-style: normal;
}

.section-heading>p:last-child {
    grid-area: description;
    justify-self: end;
    max-width: 490px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.7;
}

.editorial-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--button-ink);
    background: var(--button-bg);
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.editorial-button:hover {
    color: var(--button-ink);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

/* Services */
.services-section {
    background: var(--page-bg);
}

.services-heading {
    grid-template-areas:
        "index index"
        "title description";
    margin-bottom: clamp(38px, 4.5vw, 62px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: min(100%, 1320px);
    margin-inline: auto;
}

.service-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 17px;
    min-height: 250px;
    padding: clamp(22px, 2.2vw, 30px);
    border: 1px solid var(--line);
    border-radius: 4px 20px 4px 4px;
    color: var(--ink);
    background: var(--surface-soft);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .3) inset;
    transition: border-color 280ms ease, transform 280ms ease, background var(--theme-duration) ease, box-shadow 280ms ease;
}

.service-card:hover {
    border-color: color-mix(in srgb, var(--accent) 38%, var(--line));
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.service-card--featured {
    color: var(--dark-ink);
    background: var(--dark-surface);
}

.service-card--accent {
    border-color: color-mix(in srgb, var(--accent) 58%, #6b381d);
    color: #2b170c;
    background: color-mix(in srgb, var(--accent-soft) 88%, var(--accent));
    box-shadow: 0 1px 0 rgba(255, 246, 230, .34) inset;
}

.service-card--soft {
    border-color: color-mix(in srgb, var(--accent) 24%, var(--line));
    background: color-mix(in srgb, var(--surface) 74%, var(--accent-soft) 26%);
}

.service-card--soft .service-card__icon {
    background: color-mix(in srgb, var(--accent-soft) 42%, transparent);
}

.service-card--wide {
    grid-column: 1 / -1;
}

.service-card--promotion {
    min-height: 230px;
    background:
        linear-gradient(110deg, color-mix(in srgb, var(--accent-soft) 42%, var(--surface-soft)), color-mix(in srgb, var(--surface) 82%, transparent));
}

.service-card--promotion .service-card__main>div {
    display: grid;
    grid-template-areas:
        "kicker description"
        "title description";
    grid-template-columns: minmax(360px, 1.15fr) minmax(300px, .85fr);
    column-gap: clamp(36px, 6vw, 96px);
    align-items: end;
}

.service-card--promotion .card-kicker {
    grid-area: kicker;
}

.service-card--promotion h3 {
    grid-area: title;
    max-width: 720px;
}

.service-card--promotion .service-card__main>div>p:last-child {
    grid-area: description;
    align-self: center;
    max-width: 520px;
}

.service-card__number {
    color: currentColor;
    font-size: 13px;
    opacity: .72;
}

.service-card__main {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: clamp(18px, 2.2vw, 28px);
}

.service-card__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 1px solid color-mix(in srgb, currentColor 19%, transparent);
    border-radius: 50%;
    color: currentColor;
    background: color-mix(in srgb, var(--accent-soft) 28%, transparent);
}

.service-card__icon svg {
    width: 23px;
    height: 23px;
}

.service-card h3 {
    margin: 9px 0 10px;
    color: inherit;
    font-family: var(--font-heading);
    font-size: clamp(33px, 3.2vw, 46px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.025em;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.58;
}

.service-card .card-kicker {
    color: currentColor;
    font-size: 10px;
    opacity: .72;
}

.service-card--featured p {
    color: color-mix(in srgb, var(--dark-ink) 72%, transparent);
}

.service-card--accent p {
    color: rgba(43, 23, 12, .72);
}

.service-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 16px;
    border-top: 1px solid color-mix(in srgb, currentColor 64%, transparent);
}

.service-price,
.service-card__footer a {
    color: inherit;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.service-card__footer a {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.service-card__footer a span {
    position: relative;
    top: -1px;
    font-size: 18px;
    line-height: 1;
    transition: transform 220ms ease;
}

.service-card__footer a:hover span {
    transform: translateX(7px);
}

/* Projects */
.works-section {
    background: var(--portfolio-bg);
}

.works-section .section-heading {
    grid-template-areas:
        "index index"
        "title aside";
    grid-template-columns: minmax(0, 1.8fr) minmax(280px, .45fr);
    margin-bottom: clamp(34px, 3.5vw, 50px);
}

.works-section .section-heading h2 {
    max-width: 900px;
    font-size: clamp(54px, 6.1vw, 92px);
    line-height: .86;
}

.section-heading__aside {
    display: grid;
    grid-area: aside;
    justify-items: start;
    gap: 22px;
    align-self: end;
    max-width: 430px;
}

.section-heading__aside p {
    margin: 0;
    color: var(--muted);
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.7;
}

.projects-heading__button {
    min-width: min(100%, 248px);
}

.projects-heading__button span {
    color: var(--accent);
}

.projects-heading__button[hidden] {
    display: none;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.project-item {
    display: flex;
    min-width: 0;
    scroll-margin-top: calc(var(--header-height) + 24px);
}

.project-card {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 4px 28px 4px 4px;
    color: var(--ink);
    background: color-mix(in srgb, var(--surface) 46%, transparent);
    cursor: pointer;
    text-align: left;
    transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
    box-shadow: -2px 2px 5px 1px rgba(255, 255, 255, 0.7) inset;
}

.project-card:hover {
    border-color: color-mix(in srgb, var(--accent) 15%, var(--line));
    box-shadow: var(--shadow), -2px 2px 4px 10px rgba(255, 255, 255, 0.2) inset;

    transform: translateY(-7px);
}

html[data-theme="dark"] .project-card {
    border-color: color-mix(in srgb, var(--accent) 22%, var(--line));
    box-shadow: -2px 2px 7px 1px color-mix(in srgb, var(--accent) 18%, transparent) inset;
}

html[data-theme="dark"] .project-card:hover {
    border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
    box-shadow: var(--shadow), -2px 2px 11px 2px color-mix(in srgb, var(--accent) 22%, transparent) inset;
}

.project-card__index {
    position: absolute;
    z-index: 1;
    top: 18px;
    left: 18px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
}

.project-card__media {
    position: relative;
    aspect-ratio: 1.3 / 1;
    overflow: hidden;
    background: transparent;
}

.project-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 300ms ease, transform 600ms cubic-bezier(.22, .72, .28, 1);
    padding: 10px;
}

html[data-theme="dark"] .project-card__media {
    border-radius: 3px 22px 3px 3px;
    background: radial-gradient(ellipse at center, rgba(240, 215, 181, .2) 0%, rgba(226, 145, 87, .09) 58%, transparent 82%);
}

html[data-theme="dark"] .project-card__media img {
    filter: drop-shadow(0 15px 18px rgba(0, 0, 0, .42)) drop-shadow(0 0 1px rgba(255, 243, 221, .72));
}

.project-card:hover .project-card__media img {
    transform: scale(1.035);
}

html[data-theme="dark"] .project-card:hover .project-card__media img {
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, .5)) drop-shadow(0 0 2px rgba(255, 243, 221, .82));
}

.project-card__meta {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 14px 4px 4px;
}

.project-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.project-card__tags span {
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--muted);
    background: color-mix(in srgb, var(--accent-soft) 24%, transparent);
    font-size: 9px;
    font-weight: 600;
}

.project-card__title {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px;
    align-items: center;
    gap: 14px;
}

.project-card__title h3 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(25px, 2.1vw, 31px);
    font-weight: 400;
    line-height: 1.05;
}

.project-card__title i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 3px 11px 3px 3px;
    color: var(--ink);
    font-style: normal;
    font-size: 16px;
    transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.project-card__meta>p {
    max-width: 310px;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.project-card:hover .project-card__title i {
    color: #2b170c;
    background: var(--accent-soft);
    transform: translate(3px, -3px);
}

.projects-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 52px;
}

.projects-more-wrap .editorial-button span {
    color: var(--accent);
}

.projects-more-wrap[hidden],
#projects-more[hidden] {
    display: none;
}

/* Process */
.process-section {
    color: var(--dark-ink);
    background: var(--dark-surface);
}

.process-section .section-heading h2,
.process-section .section-heading h2 em {
    color: var(--dark-ink);
}

.process-section .section-index,
.process-section .section-heading p {
    color: color-mix(in srgb, var(--dark-ink) 65%, transparent);
}

.process-section .section-index::after {
    display: none;
}

.process-line {
    display: grid;
    position: relative;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid color-mix(in srgb, var(--accent) 58%, transparent);
    border-right: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
    border-left: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
    border-radius: 40px 40px 0 0;
}

.process-step {
    display: flex;
    position: relative;
    flex-direction: column;
    min-width: 0;
    min-height: 370px;
    padding: 56px clamp(28px, 3vw, 52px) 18px;
    border-right: 1px solid color-mix(in srgb, var(--dark-ink) 18%, transparent);
}

.process-step:last-child {
    border-right: 0;
}

.process-step__number {
    display: grid;
    position: absolute;
    top: 0;
    left: clamp(28px, 3vw, 52px);
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
    border-radius: 50%;
    color: var(--dark-ink);
    background: var(--dark-surface);
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 0;
    transform: translateY(-50%);
}

.process-step h3 {
    max-width: 270px;
    margin: 0 0 24px;
    color: var(--dark-ink);
    font-family: var(--font-heading);
    font-size: clamp(34px, 3vw, 47px);
    font-weight: 400;
    line-height: 1;
}

.process-step p {
    max-width: 270px;
    margin: 0;
    color: color-mix(in srgb, var(--dark-ink) 72%, transparent);
    font-size: 15px;
    line-height: 1.65;
}

.process-step__duration {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    margin-top: auto;
    padding: 8px 12px;
    border: 1px solid color-mix(in srgb, var(--dark-ink) 38%, transparent);
    border-radius: 999px;
    color: color-mix(in srgb, var(--dark-ink) 72%, transparent);
    font-size: 13px;
    font-weight: 600;
}

/* Price */
.price-section {
    background: var(--page-bg);
}

.price-heading {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    column-gap: clamp(40px, 6vw, 90px);
    margin-bottom: clamp(40px, 4vw, 58px);
}

.price-heading h2 {
    max-width: 760px;
    font-size: clamp(52px, 5.6vw, 82px);
    line-height: .88;
}

.price-heading>p:last-child {
    max-width: 430px;
}

.price-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.68fr) minmax(285px, .58fr);
    gap: clamp(22px, 2.5vw, 34px);
    align-items: start;
}

.price-list {
    display: grid;
    gap: 10px;
}

.price-row {
    display: grid;
    grid-template-columns: 34px minmax(205px, .72fr) minmax(240px, 1fr) minmax(168px, auto) 28px;
    column-gap: clamp(12px, 1.4vw, 18px);
    align-items: center;
    min-width: 0;
    min-height: 126px;
    padding: 42px 22px;
    border: 1px solid var(--line);
    border-radius: 4px 18px 4px 4px;
    background: color-mix(in srgb, var(--surface) 34%, transparent);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.price-row:hover {
    border-color: color-mix(in srgb, var(--accent) 52%, var(--line));
    background: color-mix(in srgb, var(--surface) 74%, var(--accent-soft) 8%);
    box-shadow: 0 18px 42px rgba(74, 43, 17, .11);
    transform: translateY(-4px);
}

.price-row__content {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.price-row__number {
    color: var(--soft);
    font-size: 12px;
}

.price-row h3 {
    display: flex;
    align-items: center;
    min-height: 2.1em;
    margin: 0;
    min-width: 0;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(26px, 2vw, 36px);
    font-weight: 400;
    line-height: 1.05;
}

.price-row p {
    margin: 0;
    min-width: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.price-row .price-row__details {
    color: color-mix(in srgb, var(--muted) 78%, var(--soft));
    font-size: 13px;
    line-height: 1.5;
}

.price-row strong {
    display: grid;
    justify-self: end;
    gap: 3px;
    padding-left: 0;
    max-width: 220px;
    color: var(--ink);
    font-size: 17px;
    letter-spacing: .04em;
    text-align: right;
    text-transform: uppercase;
}

.price-row strong small {
    color: var(--soft);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.25;
    text-transform: none;
}

.price-row__arrow {
    color: var(--ink);
    font-size: 24px;
    margin-left: 0;
    transition: color 220ms ease, transform 220ms ease;
}

.price-row:hover .price-row__arrow {
    color: var(--accent);
    transform: translateX(7px);
}

.price-notes {
    display: grid;
    gap: 14px;
}

.price-notes article {
    padding: clamp(26px, 3vw, 38px);
    border: 1px solid var(--line);
    border-radius: 3px 26px 3px 3px;
    background: var(--surface-soft);
}

.price-notes h3 {
    margin: 0;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    color: inherit;
    font-family: var(--font-heading);
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 400;
    line-height: 1.05;
}

.price-notes p {
    color: var(--muted);
    line-height: 1.65;
}

.price-notes ul {
    margin: 26px 0 0;
    padding-left: 18px;
    color: var(--muted);
}

.price-notes li+li {
    margin-top: 20px;
}

.price-notes__accent {
    padding: 28px !important;
    color: #25140b;
    background: var(--accent-soft) !important;
}

.price-notes__accent h3 {
    margin: 0 0 22px;
    font-size: 30px;
}

.price-notes__accent a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    padding-bottom: 7px;
    border-bottom: 1px solid currentColor;
    color: inherit;
    font-family: var(--font-heading);
    font-size: 22px;
}

/* Benefits */
.benefits-section {
    background: var(--page-bg-alt);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1.45fr .82fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.benefit-card {
    min-height: 300px;
    padding: clamp(28px, 3vw, 44px);
    border: 1px solid var(--line);
    border-radius: 3px 34px 3px 3px;
    background: var(--surface-soft);
}

.benefit-card--wide {
    grid-row: span 2;
    min-height: 650px;
}

.benefit-card h3 {
    max-width: 700px;
    margin: 18px 0 22px;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 400;
    line-height: .94;
}

.benefit-card:not(.benefit-card--wide) h3 {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    font-size: clamp(32px, 3vw, 46px);
}

.benefit-card p {
    max-width: 650px;
    color: var(--muted);
    line-height: 1.7;
}

.benefit-card--dark {
    --dark-surface: #242018;
    --dark-ink: #fff5df;
    --accent-soft: #e2b27d;
    display: flex;
    flex-direction: column;
    color: var(--dark-ink);
    background: var(--dark-surface);
}

.benefit-card--dark h3 {
    color: inherit;
}

.benefit-card--dark p,
.benefit-card--dark .card-kicker {
    color: color-mix(in srgb, var(--dark-ink) 65%, transparent);
}

.benefit-card--dark h3 {
    border-color: color-mix(in srgb, var(--dark-ink) 18%, transparent) !important;
}

.benefit-card--dark a {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    align-self: flex-start;
    margin-top: auto;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent-soft);
    color: var(--dark-ink);
    font-family: var(--font-heading);
    font-size: 22px;
}

.benefit-card--dark a span {
    font-size: 26px;
    transition: transform 220ms ease;
}

.benefit-card--dark a:hover span {
    transform: translateX(5px);
}

.benefits-list {
    display: grid;
    gap: 14px;
}

.benefits-list>div {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
}

.benefits-list i,
.stats i {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--ink);
    background: color-mix(in srgb, var(--accent-soft) 32%, transparent);
    font-style: normal;
}

.stats i>svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.benefits-list p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: clamp(48px, 6vw, 80px);
    border-top: 1px solid var(--line);
}

.stats div {
    min-width: 0;
    padding: 24px 20px;
    border: 1px solid var(--line);
    border-radius: 4px 16px 4px 4px;
    background: color-mix(in srgb, var(--surface) 34%, transparent);
}

.stats div:first-child {
    padding-left: 20px;
}

.stats div:last-child {
    padding-right: 20px;
}

.stats strong {
    display: block;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 400;
    line-height: 1;
}

.stats strong small {
    font-size: .52em;
}

.stats span {
    display: block;
    max-width: 150px;
    margin-top: 8px;
    color: var(--soft);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.stats p {
    max-width: 190px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.58;
}

.stats i {
    margin-bottom: 20px;
}

/* CTA */
.project-cta-section {
    padding-top: 42px;
    padding-bottom: 42px;
    background: var(--page-bg);
}

.project-cta {
    display: grid;
    position: relative;
    grid-template-columns: minmax(360px, .82fr) minmax(520px, 1.18fr);
    align-items: center;
    gap: clamp(30px, 4vw, 70px);
    min-height: 700px;
    overflow: hidden;
    padding: clamp(48px, 5.5vw, 84px);
    border-radius: 5px 70px 5px 5px;
    color: #25140b;
    background:
        linear-gradient(110deg, color-mix(in srgb, var(--accent-soft) 42%, var(--surface-soft)), color-mix(in srgb, var(--surface) 82%, transparent));
    box-shadow: 0 30px 80px rgba(105, 52, 20, .2);
}

.project-cta::after {
    position: absolute;
    top: -22%;
    right: -5%;
    width: 36%;
    aspect-ratio: 1;
    border: 1px solid rgba(48, 24, 10, .2);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 46px rgba(48, 24, 10, .04), 0 0 0 92px rgba(48, 24, 10, .03);
}

.project-cta .section-index {
    color: rgba(37, 20, 11, .58);
}

.project-cta__content {
    position: relative;
    z-index: 3;
}

.project-cta h2 {
    position: relative;
    z-index: 1;
    max-width: 610px;
    margin: 28px 0;
    color: #25140b;
    font-size: clamp(52px, 5.3vw, 82px);
    line-height: .92;
}

.project-cta h2 em {
    color: rgba(37, 20, 11, .6);
}

.project-cta__content>p:not(.section-index) {
    max-width: 600px;
    margin: 0 0 34px;
    color: rgba(37, 20, 11, .7);
    font-size: 17px;
    line-height: 1.65;
}

.editorial-button--light {
    position: relative;
    z-index: 2;
    color: #fff6e8;
    background: #251b14;
    box-shadow: 0 14px 34px rgba(50, 25, 12, .2);
}

.project-cta .editorial-button--light {
    min-height: 58px;
    padding-inline: 30px;
    font-size: 12px;
}

.project-cta small {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 14px;
    color: rgba(37, 20, 11, .58);
}

html[data-theme="dark"] .project-cta {
    color: #fff3dd;
    background:
        radial-gradient(circle at 80% 44%, rgba(218, 132, 78, .18), transparent 31%),
        linear-gradient(135deg, #211610, #392319 52%, #24150f);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .36);
}

html[data-theme="dark"] .project-cta::after {
    border-color: rgba(238, 165, 105, .22);
    box-shadow: 0 0 0 46px rgba(226, 145, 87, .045), 0 0 0 92px rgba(226, 145, 87, .025);
}

html[data-theme="dark"] .project-cta .section-index,
html[data-theme="dark"] .project-cta small {
    color: rgba(255, 243, 221, .62);
}

html[data-theme="dark"] .project-cta h2 {
    color: #fff3dd;
}

html[data-theme="dark"] .project-cta h2 em,
html[data-theme="dark"] .project-cta__content>p:not(.section-index) {
    color: rgba(255, 243, 221, .72);
}

html[data-theme="dark"] .project-cta .editorial-button--light {
    color: #24150d;
    background: #f0d7b5;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .3);
}

.project-cta__visual {
    position: relative;
    z-index: 2;
    min-width: 0;
    min-height: 590px;
    perspective: 1200px;
}

.project-cta__blueprint {
    position: absolute;
    inset: 10% 2% 4% 4%;
    border: 1px dashed rgba(120, 61, 27, .34);
    border-radius: 16px;
}

.project-cta__blueprint span {
    position: absolute;
    border: 1px dashed rgba(120, 61, 27, .28);
    border-radius: 12px;
}

.project-cta__blueprint span:nth-child(1) {
    inset: -3% 12% 62% 32%;
}

.project-cta__blueprint span:nth-child(2) {
    inset: 17% -4% 41% 46%;
}

.project-cta__blueprint span:nth-child(3) {
    inset: 45% 0 17% 16%;
}

.project-cta__blueprint span:nth-child(4) {
    inset: 69% 22% -4% 3%;
}

.project-cta__piece {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 14px;
    opacity: 0;
    background: rgba(255, 244, 225, .66);
    box-shadow: 0 18px 42px rgba(95, 48, 20, .16);
    backdrop-filter: blur(9px);
    transform: translate3d(var(--piece-x, 0), var(--piece-y, 36px), 0) rotate(var(--piece-rotate, 0deg)) scale(.92);
    transform-origin: center;
    will-change: transform, opacity;
}

.project-cta__visual:not(.is-parallax-ready) .project-cta__piece {
    visibility: hidden;
}

.project-cta__piece--nav {
    --piece-x: 0;
    --piece-y: -80px;
    top: 0;
    left: 12%;
    width: 78%;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
}

.project-cta__piece--nav i {
    width: 18px;
    height: 18px;
    margin-right: auto;
    border: 2px solid #d37b3f;
    border-radius: 50%;
}

.project-cta__piece--nav span {
    width: 31px;
    height: 4px;
    border-radius: 99px;
    background: rgba(104, 62, 36, .34);
}

.project-cta__piece--nav b {
    width: 58px;
    height: 21px;
    margin-left: auto;
    border-radius: 99px;
    background: #db884d;
}

.project-cta__piece--hero {
    --piece-x: 120px;
    --piece-y: -15px;
    --piece-rotate: 3deg;
    top: 79px;
    left: 8%;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 24px;
    width: 80%;
    height: 230px;
    padding: 34px;
    border-width: 2px;
}

.wire-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wire-heading {
    width: 72%;
    height: 15px;
    margin-bottom: 13px;
    border-radius: 3px;
    background: rgba(75, 41, 23, .7);
}

.wire-copy span,
.project-cta__piece--form span {
    width: 82%;
    height: 4px;
    margin-top: 9px;
    border-radius: 99px;
    background: rgba(104, 62, 36, .28);
}

.wire-copy span:nth-of-type(2) {
    width: 62%;
}

.wire-copy span:nth-of-type(3) {
    width: 48%;
}

.wire-copy b,
.project-cta__piece--form b {
    width: 84px;
    height: 25px;
    margin-top: 22px;
    border-radius: 99px;
    background: #db884d;
}

.wire-picture {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(169, 91, 44, .38);
    border-radius: 8px;
    background: linear-gradient(180deg, #efb47e, #da7c43);
}

.wire-picture i {
    position: absolute;
    top: 21%;
    left: 38%;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
}

.wire-picture span {
    position: absolute;
    right: -10%;
    bottom: -18%;
    left: -12%;
    height: 62%;
    border-radius: 50% 50% 0 0;
    background: #dc8c55;
    transform: rotate(-5deg);
}

.wire-picture span:nth-of-type(2) {
    bottom: -29%;
    background: #cb6f3a;
    transform: rotate(7deg);
}

.wire-picture span:nth-of-type(3) {
    bottom: -41%;
    background: #b95d2f;
    transform: rotate(-3deg);
}

.project-cta__piece--features {
    --piece-x: -110px;
    --piece-y: 30px;
    top: 330px;
    left: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 52%;
    height: 135px;
    padding: 24px 18px;
}

.project-cta__piece--features>div {
    display: grid;
    justify-items: center;
    align-content: start;
}

.project-cta__piece--features i {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #c66e36;
    background: rgba(225, 145, 84, .2);
}

.project-cta__piece--features span {
    width: 54px;
    height: 4px;
    margin-top: 15px;
    border-radius: 99px;
    background: rgba(104, 62, 36, .3);
}

.project-cta__piece--features span+span {
    width: 38px;
    margin-top: 8px;
}

.project-cta__piece--stats {
    --piece-x: 110px;
    --piece-y: 20px;
    top: 296px;
    right: 0;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 48%;
    height: 135px;
    padding: 30px 18px;
}

.project-cta__piece--stats>div {
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(104, 62, 36, .14);
}

.project-cta__piece--stats>div:last-child {
    border-right: 0;
}

.project-cta__piece--stats i {
    width: 44px;
    height: 17px;
    border-radius: 3px;
    background: rgba(75, 41, 23, .72);
}

.project-cta__piece--stats span {
    width: 34px;
    height: 4px;
    border-radius: 99px;
    background: rgba(104, 62, 36, .25);
}

.project-cta__piece--gallery {
    --piece-x: -80px;
    --piece-y: 90px;
    bottom: 0;
    left: 7%;
    z-index: 3;
    width: 60%;
    height: 180px;
    padding: 22px;
}

.wire-section-label {
    display: block;
    width: 31%;
    height: 8px;
    border-radius: 2px;
    background: rgba(75, 41, 23, .62);
}

.project-cta__piece--gallery>div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.project-cta__piece--gallery i {
    height: 70px;
    border-radius: 5px;
    background: linear-gradient(145deg, #edb37d, #c86c37);
}

.project-cta__piece--gallery span {
    display: inline-block;
    width: 24%;
    height: 4px;
    margin: 12px 8% 0 0;
    border-radius: 99px;
    background: rgba(104, 62, 36, .26);
}

.project-cta__piece--form {
    --piece-x: 100px;
    --piece-y: 90px;
    right: 2%;
    bottom: 25px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    width: 36%;
    height: 165px;
    padding: 22px;
}

.project-cta__piece--form .wire-section-label {
    width: 58%;
    margin-bottom: 5px;
}

.project-cta__piece--form span {
    width: 75%;
    height: 3px;
    margin-top: 10px;
}

.project-cta__piece--form span:nth-of-type(2) {
    width: 52%;
}

.project-cta__piece--form b {
    width: 70px;
    height: 22px;
    margin-top: auto;
}

/* Contact */
.contact-section,
.site-footer {
    --dark-surface: #211812;
    --dark-ink: #fff3dd;
}

.contact-section {
    padding-bottom: clamp(70px, 7vw, 108px);
    color: var(--dark-ink);
    background: var(--dark-surface);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(360px, .78fr) minmax(620px, 1.22fr);
    gap: clamp(20px, 2vw, 34px);
    align-items: stretch;
}

.contact-map,
.contact-card {
    position: relative;
    border: 1px solid color-mix(in srgb, var(--dark-ink) 20%, transparent);
    border-radius: 28px 4px 28px 4px;
    background: color-mix(in srgb, var(--dark-surface) 92%, var(--dark-ink) 8%);
}

.contact-map {
    min-height: 690px;
    padding: 28px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 634px;
    border: 0;
    border-radius: 20px 4px 20px 4px;
    filter: saturate(.3) contrast(.94) brightness(1.04);
}

.contact-map__address {
    position: absolute;
    right: 50px;
    bottom: 56px;
    left: 50px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 30px;
    gap: 20px;
    align-items: end;
    min-height: 110px;
    padding: 22px 26px;
    border: 1px solid color-mix(in srgb, var(--dark-ink) 24%, transparent);
    border-radius: 18px 4px 18px 4px;
    color: var(--dark-ink);
    background: color-mix(in srgb, var(--dark-surface) 88%, transparent);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
    backdrop-filter: blur(14px);
}

.contact-map__address>span:nth-child(2) {
    display: grid;
    gap: 7px;
}

.contact-map__address small,
.contact-details small,
.contact-messengers>p {
    margin: 0;
    color: color-mix(in srgb, var(--dark-ink) 58%, transparent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.contact-map__address strong {
    font-family: var(--font-heading);
    font-size: clamp(20px, 1.7vw, 24px);
    font-weight: 400;
}

.contact-map__address i {
    font-style: normal;
    font-size: 18px;
    position: relative;
    bottom: 3px;
}

.contact-card {
    min-height: 690px;
    padding: clamp(32px, 3.6vw, 58px);
}

.contact-card__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(230px, .72fr);
    gap: 44px;
    align-items: center;
}

.contact-card__heading h2 {
    margin: 0;
    color: var(--dark-ink);
    font-family: var(--font-heading);
    font-size: clamp(40px, 4vw, 62px);
    font-weight: 400;
    line-height: .98;
}

.contact-card__heading p {
    margin: 0;
    color: color-mix(in srgb, var(--dark-ink) 68%, transparent);
    font-size: 15px;
    line-height: 1.65;
}

.contact-card__divider {
    display: grid;
    grid-template-columns: 1fr auto 3.4fr;
    gap: 18px;
    align-items: center;
    margin: 34px 0 38px;
    color: var(--accent);
}

.contact-card__divider::before,
.contact-card__divider::after {
    height: 1px;
    background: color-mix(in srgb, var(--dark-ink) 20%, transparent);
    content: "";
}

.contact-card__body {
    display: grid;
    grid-template-columns: minmax(250px, .82fr) minmax(310px, 1.18fr);
    gap: clamp(30px, 3.5vw, 54px);
}

.contact-details {
    min-width: 0;
}

.contact-channel {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 116px;
    border-bottom: 1px solid color-mix(in srgb, var(--dark-ink) 20%, transparent);
    color: var(--dark-ink);
}

.contact-round-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid color-mix(in srgb, var(--accent) 72%, transparent);
    border-radius: 50%;
    color: var(--accent);
}

.contact-channel>span:nth-child(2) {
    display: grid;
    gap: 7px;
}

.contact-channel strong, .contact-channel strong a{
    color: var(--dark-ink);
    font-family: var(--font-heading);
    font-size: clamp(22px, 1.8vw, 22px);
    font-weight: 400;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.contact-messengers {
    padding-top: 28px;
}

.contact-messengers__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.contact-messengers__grid a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    min-height: 76px;
    padding: 12px;
    border: 1px solid color-mix(in srgb, var(--dark-ink) 22%, transparent);
    border-radius: 12px 4px 12px 4px;
    color: var(--dark-ink);
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-messengers__grid a:hover {
    border-color: color-mix(in srgb, var(--accent) 72%, transparent);
    background: color-mix(in srgb, var(--dark-ink) 8%, transparent);
    transform: translateY(-3px);
}

.contact-messengers__grid strong {
    min-width: 0;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

.contact-messenger__mark {
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border: 1px solid color-mix(in srgb, var(--accent) 68%, transparent);
    border-radius: 12px;
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 8%, transparent);
    font-family: var(--font-heading);
    font-size: 19px;
}

.contact-messenger__mark svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.2;
}

.contact-messenger__mark--max {
    padding: 4px;
    border-color: transparent;
    background: transparent;
}

.contact-messenger__mark--max img {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.contact-form {
    display: grid;
    align-content: start;
    gap: 20px;
    padding-left: clamp(26px, 3vw, 46px);
    border-left: 1px solid color-mix(in srgb, var(--dark-ink) 20%, transparent);
}

.field label {
    display: block;
    margin-bottom: 9px;
    color: color-mix(in srgb, var(--dark-ink) 60%, transparent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.field input,
.field textarea {
    width: 100%;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--dark-ink) 28%, transparent);
    border-radius: 0;
    outline: 0;
    color: var(--dark-ink);
    background: transparent;
    font-size: 16px;
    transition: border-color 180ms ease;
}

.field textarea {
    min-height: 112px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--accent);
}

.field input.uk-form-danger,
.field input.is-invalid,
.field textarea.uk-form-danger,
.field textarea.is-invalid,
.field input.uk-form-danger:focus,
.field input.is-invalid:focus,
.field textarea.uk-form-danger:focus,
.field textarea.is-invalid:focus {
    border-color: #b42318;
}

.field input::placeholder,
.field textarea::placeholder {
    color: color-mix(in srgb, var(--dark-ink) 48%, transparent);
}

.contact-form .editorial-button {
    justify-self: stretch;
    justify-content: center;
    width: 100%;
    margin-top: 2px;
    color: var(--dark-surface);
    background: var(--dark-ink);
}

.contact-form .rf-button-send:disabled {
    cursor: wait;
    opacity: .65;
}

.form-consent {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    color: color-mix(in srgb, var(--dark-ink) 64%, transparent);
    font-size: 11px;
    line-height: 1.55;
    cursor: pointer;
}

.form-consent__checkbox {
    display: grid;
    width: 16px;
    height: 16px;
    margin: 1px 0 0;
    padding: 0;
    place-content: center;
    border: 1px solid color-mix(in srgb, var(--dark-ink) 45%, transparent);
    border-radius: 3px;
    color: var(--dark-surface);
    background: transparent;
    appearance: none;
    cursor: pointer;
}

.form-consent__checkbox::before {
    width: 5px;
    height: 9px;
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    content: "";
    transform: translateY(-1px) rotate(45deg) scale(0);
    transition: transform 140ms ease;
}

.form-consent__checkbox:checked {
    border-color: var(--dark-ink);
    background: var(--dark-ink);
}

.form-consent__checkbox:checked::before {
    transform: translateY(-1px) rotate(45deg) scale(1);
}

.form-consent__checkbox.uk-form-danger,
.form-consent__checkbox.is-invalid {
    border-color: #b42318;
}

.form-consent a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: color-mix(in srgb, var(--dark-ink) 56%, transparent);
    font-size: 11px;
    line-height: 1.5;
}

/* Footer and mobile menu */
.site-footer {
    padding: 40px 0;
    border-top: 1px solid color-mix(in srgb, var(--dark-ink) 18%, transparent);
    color: var(--dark-ink);
    background: var(--dark-surface);
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-footer p,
.site-footer span {
    margin: 0;
    color: color-mix(in srgb, var(--dark-ink) 56%, transparent);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-footer__gamedev,
.site-footer__policy {
    color: color-mix(in srgb, var(--dark-ink) 62%, transparent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.site-footer__gamedev:hover,
.site-footer__policy:hover {
    color: var(--accent-soft);
}

.cookie-banner {
    top: auto !important;
    right: auto !important;
    bottom: 24px !important;
    left: 24px !important;
    z-index: 1100;
    width: min(560px, calc(100vw - 48px)) !important;
    border: 1px solid rgba(255, 243, 221, .2);
    border-radius: 18px 4px 18px 4px;
    color: #fff3dd;
    background: rgba(33, 24, 18, .94);
    box-shadow: 0 18px 54px rgba(26, 14, 8, .26);
    backdrop-filter: blur(16px);
    animation: cookie-banner-in 320ms ease both;
}

.floating-messengers {
    display: grid;
    position: fixed;
    z-index: 1050;
    right: 18px;
    bottom: 24px;
    gap: 7px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface) 88%, transparent);
    box-shadow: 0 14px 38px rgba(31, 18, 10, .16);
    backdrop-filter: blur(14px) saturate(1.15);
}

.floating-messengers__link {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.floating-messengers__link:hover,
.floating-messengers__link:focus-visible {
    color: #fff;
    filter: saturate(1.15);
    transform: translateY(-2px);
}

.floating-messengers__link--telegram {
    background: #229ed9;
    box-shadow: 0 7px 18px rgba(34, 158, 217, .28);
}

.floating-messengers__link--telegram svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.floating-messengers__link--max {
    background: transparent;
    box-shadow: 0 7px 18px rgba(71, 26, 255, .22);
}

.floating-messengers__link--max img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cookie-banner__inner {
    padding: 16px 16px 16px 20px;
}

.cookie-banner .uk-container {
    width: 100%;
    max-width: none;
    padding: 0;
}

.cookie-banner .uk-grid {
    margin-left: 0;
    flex-wrap: nowrap;
    gap: 22px;
}

.cookie-banner .uk-grid>* {
    padding-left: 0;
}

.cookie-banner__text {
    margin: 0;
    color: rgba(255, 243, 221, .72);
    font-size: 12px;
    line-height: 1.55;
}

.cookie-banner__text a {
    color: #fff3dd;
    border-bottom: 1px solid rgba(255, 243, 221, .45);
}

.cookie-banner__text a:hover {
    color: var(--accent-soft);
    border-color: var(--accent-soft);
}

#cookie-accept {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    color: #24170f;
    background: #fff3dd;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

#cookie-accept:hover,
#cookie-accept:focus {
    color: #fff8e9;
    background: var(--accent);
    transform: translateY(-1px);
}

@keyframes cookie-banner-in {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-footer .brand__name {
    width: 130px;
}

.site-footer .brand {
    color: var(--dark-ink);
}

.mobile-panel {
    color: var(--ink);
    background: var(--glass-strong);
    backdrop-filter: blur(22px);
}

.brand--mobile {
    margin: 20px 0 48px;
    color: var(--ink) !important;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 29px;
}

.phone--mobile {
    display: inline-block;
    margin-top: 38px;
    color: var(--ink) !important;
}

.mobile-panel .uk-close {
    color: var(--ink);
}

/* Project modal */
.project-modal {
    color: var(--ink);
}

.project-modal__dialog {
    width: min(94vw, 1440px);
    padding: clamp(28px, 4vw, 60px);
    border-radius: 4px 42px 4px 4px;
    background: var(--surface);
    box-shadow: var(--shadow);
    transition: background var(--theme-duration) ease;
}

.project-modal__dialog .uk-close {
    color: var(--ink);
}

.project-modal__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
    padding-right: 42px;
}

.project-modal__heading p {
    margin: 0;
    color: var(--soft);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.project-modal__heading h2 {
    margin: 5px 0 0;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 400;
    line-height: 1;
}

.project-modal__nav {
    display: flex;
    gap: 8px;
}

.project-modal__nav button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
}

.project-modal__devices {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, .23fr);
    gap: clamp(20px, 4vw, 54px);
    align-items: center;
}

.desktop-device {
    margin: 0;
    overflow: hidden;
    border: 8px solid #211d18;
    border-radius: 15px;
    background: #211d18;
    box-shadow: var(--shadow);
}

.desktop-device__bar {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 25px;
    padding-left: 7px;
}

.desktop-device__bar i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e3b17b;
}

.desktop-device img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.mobile-device {
    position: relative;
    margin: 0 auto;
    padding: 14px 7px;
    overflow: hidden;
    border: 0px solid #211d18;
    border-radius: 30px;
    background: #211d18;
    box-shadow: var(--shadow);
}

.mobile-device>span {
    position: absolute;
    top: 7px;
    left: 50%;
    z-index: 1;
    width: 38px;
    height: 4px;
    border-radius: 99px;
    background: #090807;
    transform: translateX(-50%);
}

.mobile-device img {
    display: block;
    width: min(100%, 318px);
    max-height: 80vh;
    border-radius: 17px;
    object-fit: contain;
}

/* Animations */
.site-header .uk-animation-fade,
.hero__content .uk-animation-slide-bottom-small,
.content-section [class*="uk-animation-"] {
    animation-duration: 980ms;
    animation-timing-function: cubic-bezier(.22, .72, .28, 1);
}

@keyframes brand-reveal {
    from {
        clip-path: inset(0 100% 0 0);
        transform: translateX(-7px);
        opacity: 0;
    }

    to {
        clip-path: inset(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes brand-cursor {

    0%,
    46% {
        opacity: .9;
    }

    47%,
    100% {
        opacity: 0;
    }
}

@keyframes brand-glitch {

    0%,
    100% {
        filter: none;
        transform: translateX(0);
    }

    25% {
        filter: drop-shadow(2px 0 0 rgba(39, 190, 174, .75)) drop-shadow(-2px 0 0 rgba(229, 121, 67, .7));
        transform: translateX(1px);
    }

    55% {
        filter: drop-shadow(-2px 0 0 rgba(39, 190, 174, .75)) drop-shadow(2px 0 0 rgba(229, 121, 67, .7));
        transform: translateX(-1px);
    }
}

@keyframes brand-theme-pulse {

    0%,
    100% {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }

    45% {
        filter: blur(1.5px);
        transform: scale(.96);
        opacity: .62;
    }
}

@keyframes hero-scroll-arrow {
    0% {
        opacity: 0;
        transform: translateY(-9px) scale(.62);
        filter: blur(2.5px);
    }

    28% {
        opacity: .5;
        filter: blur(.8px);
    }

    52% {
        opacity: .8;
        transform: translateY(1px) scale(1);
        filter: blur(0) drop-shadow(0 3px 4px color-mix(in srgb, currentColor 24%, transparent));
    }

    76% {
        opacity: .4;
        filter: blur(.7px);
    }

    100% {
        opacity: 0;
        transform: translateY(11px) scale(.72);
        filter: blur(2.5px);
    }
}

/* Responsive */
@media (max-width: 1199px) {
    .site-header__inner {
        display: flex;
        position: relative;
        justify-content: space-between;
        gap: 0;
        width: 100%;
        max-width: 100%;
        padding-inline: 22px;
    }

    .site-nav,
    .site-header__actions {
        display: none !important;
    }

    .site-header__mobile-actions {
        display: flex !important;
        position: absolute;
        top: 50%;
        right: 22px;
        flex: none;
        gap: 10px;
        margin-left: 0;
        transform: translateY(-50%);
    }

    .site-header__inner>.brand {
        transform: translateY(-8px);
    }

    .site-nav {
        gap: 18px;
    }

    .phone {
        display: none;
    }

    .section-heading {
        grid-template-columns: minmax(0, 1.45fr) minmax(240px, .55fr);
        column-gap: 48px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card,
    .service-card--featured {
        grid-column: auto;
        grid-row: auto;
    }

    .service-card--wide {
        grid-column: 1 / -1;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-layout {
        grid-template-columns: 1fr;
    }

    .price-notes {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .contact-layout {
        grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
    }

    .contact-card__heading,
    .contact-card__body {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-form {
        padding: 28px 0 0;
        border-top: 1px solid color-mix(in srgb, var(--dark-ink) 20%, transparent);
        border-left: 0;
    }
}

@media (max-width: 959px) {
    :root {
        --header-height: 68px;
    }

    .site-header__inner {
        display: flex;
        position: relative;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
        min-height: var(--header-height);
        padding-inline: 20px;
    }

    .site-header__mobile-actions {
        position: absolute;
        top: 50%;
        right: 20px;
        flex: none;
        gap: 10px;
        margin-left: 0;
        transform: translateY(-50%);
    }

    .site-header__inner>.brand {
        transform: translateY(-8px);
    }

    .hero__background {
        background-position: 56% center;
    }

    .hero__content {
        transform: translateY(-90px);
    }

    .section-heading {
        grid-template-areas:
            "index"
            "title"
            "description";
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .section-heading>p:last-child {
        justify-self: start;
        max-width: 620px;
    }

    .services-heading {
        grid-template-areas:
            "index"
            "title"
            "description";
    }

    .works-section .section-heading {
        grid-template-areas:
            "index"
            "title"
            "aside";
        grid-template-columns: minmax(0, 1fr);
    }

    .section-heading__aside {
        justify-self: start;
        max-width: 620px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-card--featured {
        grid-column: auto;
        grid-row: auto;
    }

    .service-card--wide {
        grid-column: 1 / -1;
    }

    .service-card--promotion .service-card__main>div {
        display: block;
    }

    .process-line {
        grid-template-columns: 1fr 1fr;
        gap: 30px 0;
        border: 0;
        border-radius: 0;
    }

    .process-step {
        min-height: 320px;
        padding: 58px 30px 24px;
        border-top: 1px solid color-mix(in srgb, var(--dark-ink) 32%, transparent);
    }

    .process-step:nth-child(2n) {
        border-right: 0;
    }

    .process-step__number {
        left: 30px;
    }

    .price-layout {
        grid-template-columns: 1fr;
    }

    .price-row {
        grid-template-columns: 34px minmax(160px, .72fr) minmax(190px, 1fr) minmax(120px, auto) 24px;
        column-gap: 12px;
        padding: 20px;
    }

    .price-notes {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .price-notes article {
        padding: 22px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .benefit-card--wide {
        grid-row: auto;
        min-height: auto;
    }

    .project-cta {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .project-cta__content {
        max-width: 640px;
    }

    .project-cta__visual {
        justify-self: center;
        width: min(100%, 680px);
        min-height: 590px;
        margin-top: 24px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .project-modal__devices {
        grid-template-columns: 1fr;
    }

    .mobile-device {
        width: min(48vw, 260px);
    }
}

@media (max-width: 639px) {
    .section-container {
        width: min(100% - 30px, var(--content-width));
    }

    .content-section {
        padding: 82px 0;
    }

    .brand__name {
        width: 142px;
    }

    .brand {
        gap: 5px;
    }

    .brand::after {
        height: 15px;
    }

    .header-theme-toggle,
    .menu-button {
        width: 34px;
        height: 34px;
    }

    .site-header__inner {
        padding-inline: 15px;
    }

    .site-header__mobile-actions {
        right: 15px;
        gap: 8px;
    }

    .site-hero {
        min-height: 600px;
    }

    .hero__content {
        align-items: flex-start;
        justify-content: flex-start;
        width: min(100% - 30px, 1160px);
        padding-top: 112px;
        padding-bottom: 90px;
        text-align: left;
        transform: none;
    }

    .hero__content::before {
        top: -20%;
        right: auto;
        bottom: -20%;
        left: 50%;
        width: 100vw;
        background: linear-gradient(180deg, rgb(255 255 255 / 72%), rgb(255 255 255 / 38%));
        transform: translateX(-50%);
    }

    html[data-theme="dark"] .hero__content::before {
        background: linear-gradient(180deg, rgba(18, 9, 5, .56), rgba(15, 8, 5, .48));
    }

    .site-hero h1 {
        max-width: 100%;
        color: var(--muted);
        font-family: var(--font-body);
        font-size: clamp(30px, 9.4vw, 36px);
        font-weight: 500;
        line-height: 1.16;
        letter-spacing: -.055em;
        text-wrap: pretty;
    }

    .site-hero h1 em {
        color: inherit;
        font-weight: inherit;
    }

    .hero__eyebrow {
        width: min(100%, 240px);
        margin-bottom: 17px;
        font-size: 11px;
        letter-spacing: .18em;
    }

    .hero__lead {
        max-width: 100%;
        margin-top: 19px;
        font-size: 15px;
        line-height: 1.65;
    }

    .theme-control {
        align-self: flex-start;
        margin-top: 23px;
    }

    .theme-control__button {
        min-width: 86px;
        min-height: 39px;
    }

    .hero__cta {
        justify-content: center;
        width: 100%;
        margin-top: 18px;
    }

    .hero__scroll {
        transform: translateX(-50%) scale(.82);
        transform-origin: bottom;
    }

    .section-heading {
        min-width: 0;
        margin-bottom: 46px;
    }

    .section-heading h2,
    .project-cta h2 {
        font-size: clamp(50px, 17vw, 76px);
    }

    .services-heading h2 {
        max-width: 100%;
        font-size: clamp(38px, 12.5vw, 48px);
        line-height: .92;
        overflow-wrap: anywhere;
    }

    .works-section .section-heading,
    .section-heading__aside {
        width: 100%;
        max-width: none;
    }

    .section-heading__aside p {
        max-width: none;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-card--featured {
        display: grid;
        grid-column: auto;
        min-height: auto;
        padding: 22px;
    }

    .service-card--wide {
        grid-column: auto;
    }

    .service-card__main {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
        gap: 18px;
    }

    .service-card__icon {
        width: 54px;
        height: 54px;
        display: none;
    }

    .benefits-list i,
    .stats i {
        display: none;
    }

    .service-card h3 {
        font-size: clamp(29px, 10vw, 38px);
        overflow-wrap: anywhere;
    }

    .service-card__footer {
        align-items: flex-end;
        flex-wrap: wrap;
    }

    .service-card__footer a {
        gap: 10px;
    }

    .process-line {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .process-step {
        min-height: 300px;
        padding: 56px 22px 22px;
        border-right: 0;
    }

    .process-step__number {
        left: 22px;
    }

    .price-row {
        grid-template-columns: 17px minmax(0, 1fr) 28px;
        column-gap: 0px;
        row-gap: 16px;
        min-height: auto;
        padding: 22px 18px;
    }
    .price-row__arrow {
        display: none;
    }
    .price-row__number {
        display: none;
    }

    .price-row h3 {
        grid-column: 2;
    }

    .price-row__content {
        grid-column: 2 / 4;
        gap: 8px;
    }

    .price-row strong {
        grid-column: 2 / 4;
        justify-self: start;
        max-width: none;
        padding-top: 14px;
        padding-left: 0;
        border-top: 1px solid var(--line);
        border-left: 0;
        text-align: left;
    }

    .price-row__arrow {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }

    .price-notes {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        min-height: auto;
        padding: 28px;
    }

    .stats {
        grid-template-columns: 1fr;
        margin-top: 52px;
    }

    .stats div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border: 1px solid var(--line);
    }

    .stats div:first-child {
        padding-left: 20px;
    }

    .stats div:last-child {
        padding-right: 20px;
    }

    .stats i {
        margin: 0 0 18px;
    }

    .stats p {
        margin-top: 12px;
    }

    .benefits-list>div {
        grid-template-columns: minmax(0, 1fr);
        justify-items: start;
        gap: 12px;
    }

    .contact-channel {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
        gap: 14px;
        padding: 20px 0;
    }

    .project-cta {
        gap: 18px;
        padding: 48px 26px;
        border-radius: 4px 38px 4px 4px;
    }

    .project-cta h2 {
        font-size: clamp(46px, 14vw, 64px);
    }

    .project-cta__visual {
        width: 100%;
        min-height: 400px;
        margin-top: 12px;
    }

    .project-cta__piece {
        border-radius: 10px;
    }

    .project-cta__piece--nav {
        left: 6%;
        width: 88%;
        height: 42px;
        gap: 12px;
        padding: 0 12px;
    }

    .project-cta__piece--nav span {
        width: 18px;
    }

    .project-cta__piece--nav b {
        width: 42px;
    }

    .project-cta__piece--hero {
        top: 58px;
        left: 2%;
        width: 92%;
        height: 158px;
        gap: 12px;
        padding: 18px;
    }

    .wire-heading {
        height: 9px;
        margin-bottom: 7px;
    }

    .wire-copy span {
        height: 3px;
        margin-top: 6px;
    }

    .wire-copy b {
        width: 54px;
        height: 18px;
        margin-top: 12px;
    }

    .project-cta__piece--features {
        top: 228px;
        width: 55%;
        height: 100px;
        padding: 15px 8px;
    }

    .project-cta__piece--features i {
        width: 28px;
        height: 28px;
    }

    .project-cta__piece--features span {
        width: 34px;
        margin-top: 10px;
    }

    .project-cta__piece--stats {
        top: 206px;
        width: 48%;
        height: 96px;
        padding: 20px 6px;
    }

    .project-cta__piece--stats i {
        width: 27px;
        height: 11px;
    }

    .project-cta__piece--stats span {
        width: 23px;
        height: 3px;
    }

    .project-cta__piece--gallery {
        left: 3%;
        width: 62%;
        height: 120px;
        padding: 13px;
    }

    .project-cta__piece--gallery>div {
        gap: 5px;
        margin-top: 10px;
    }

    .project-cta__piece--gallery i {
        height: 42px;
    }

    .project-cta__piece--form {
        right: 0;
        bottom: 7px;
        width: 40%;
        height: 120px;
        padding: 14px;
    }

    .project-cta__piece--form .wire-section-label {
        height: 5px;
    }

    .project-cta__piece--form b {
        width: 48px;
        height: 17px;
    }

    .contact-messengers__grid {
        grid-template-columns: 1fr;
    }

    .contact-messengers__grid a {
        min-height: 70px;
        padding-inline: 16px;
    }

    .contact-map {
        min-height: 470px;
        padding: 14px;
        border-radius: 18px 4px 18px 4px;
    }

    .contact-map iframe {
        min-height: 442px;
        border-radius: 13px 3px 13px 3px;
    }

    .contact-map__address {
        right: 28px;
        bottom: 28px;
        left: 28px;
        grid-template-columns: 100%;
        gap: 0px;
        min-height: 88px;
        padding: 16px;
    }

    .contact-map__address .contact-round-icon {
        width: 42px;
        height: 42px;
        display: none;
    }

    .contact-map__address i {
        display: none;
    }


    .contact-map__address strong {
        font-size: 17px;
    }

    .contact-card {
        min-height: auto;
        padding: 28px 22px;
        border-radius: 18px 4px 18px 4px;
    }

    .contact-card__heading,
    .contact-card__body {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-card__heading h2 {
        font-size: clamp(40px, 13vw, 54px);
    }

    .contact-card__divider {
        margin: 26px 0;
    }

    .contact-form {
        padding: 28px 0 0;
        border-top: 1px solid color-mix(in srgb, var(--dark-ink) 20%, transparent);
        border-left: 0;
    }

    .site-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .cookie-banner {
        right: auto !important;
        bottom: 12px !important;
        left: 12px !important;
        width: min(310px, calc(100vw - 84px)) !important;
        border-radius: 14px 4px 14px 4px;
    }

    .floating-messengers {
        right: 10px;
        bottom: 10px;
        padding: 5px;
    }

    .floating-messengers__link {
        width: 36px;
        height: 36px;
    }

    .cookie-banner__inner {
        padding: 11px 10px 11px 13px;
    }

    .cookie-banner .uk-grid {
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 3px;
    }

    .cookie-banner .uk-width-expand {
        min-width: 0;
    }

    .cookie-banner .uk-width-auto {
        flex: 0 0 36px;
        width: 36px !important;
    }

    .cookie-banner__text {
        font-size: 11px;
        line-height: 1.45;
    }

    #cookie-accept {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        min-height: 36px;
        padding: 0;
        border-radius: 50%;
        font-size: 0;
        line-height: 1;
    }

    #cookie-accept::before {
        display: block;
        content: "✓";
        font-size: 16px;
        line-height: 1;
        transform: translateY(1px);
    }

    .project-modal__dialog {
        width: 96vw;
        padding: 25px 16px;
    }

    .project-modal__heading {
        align-items: flex-start;
        flex-direction: column;
        padding-right: 5px;
    }

    .mobile-device {
        width: min(66vw, 230px);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero__background {
        transition: opacity 120ms linear;
    }

    .site-hero.is-switching .hero__background {
        transform: none;
    }

    .brand.is-cursor-ready::after {
        animation: none;
        opacity: .85;
    }

    .hero__scroll span {
        animation: none;
        opacity: .72;
        transform: none;
        filter: none;
    }

    .project-cta__piece {
        opacity: 1;
        transform: none;
        transition: none;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}

/* Privacy policy */
.legal-page {
    min-height: 100vh;
    color: var(--ink);
    background: var(--portfolio-bg);
}

.legal-document {
    color: var(--ink);
    background: var(--portfolio-bg);
}

.legal-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--portfolio-bg) 88%, transparent);
    backdrop-filter: blur(18px);
}

.legal-header__inner {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.legal-header__brand {
    display: grid;
    gap: 5px;
    color: var(--ink);
}

.legal-header__brand img {
    width: 173px;
    height: auto;
}

.legal-header__brand span {
    color: var(--soft);
    font-size: 9px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.legal-header__back {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 24px;
    padding: 0 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.legal-header__back:hover {
    border-color: var(--button-bg);
    color: var(--button-ink);
    background: var(--button-bg);
}

.legal-main {
    padding: clamp(74px, 8vw, 132px) 0 clamp(90px, 9vw, 150px);
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(330px, .72fr) minmax(560px, 1.28fr);
    gap: clamp(54px, 8vw, 140px);
    align-items: start;
}

.legal-heading {
    position: sticky;
    top: 142px;
}

.legal-heading>p {
    margin: 0 0 30px;
    color: var(--soft);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.legal-heading h1 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(58px, 5.7vw, 92px);
    font-weight: 400;
    line-height: .9;
}

.legal-heading h1 em {
    color: var(--soft);
    font-style: normal;
}

.legal-heading__meta {
    display: grid;
    gap: 7px;
    max-width: 300px;
    margin-top: 58px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.legal-heading__meta span {
    color: var(--soft);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.legal-heading__meta strong {
    font-size: 14px;
    font-weight: 500;
}

.legal-content {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px 4px 28px 4px;
    background: var(--surface);
}

.legal-content section {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: clamp(20px, 3vw, 42px);
    padding: clamp(28px, 4vw, 50px);
    border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
    border-bottom: 0;
}

.legal-content section>span {
    padding-top: 7px;
    color: var(--soft);
    font-size: 10px;
    letter-spacing: .08em;
}

.legal-content h2 {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-size: clamp(30px, 2.6vw, 42px);
    font-weight: 400;
    line-height: 1;
}

.legal-content p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.legal-content p+p {
    margin-top: 14px;
}

.legal-content .legal-contact {
    color: #fff3dd;
    background: #211812;
}

.legal-contact>span,
.legal-contact p {
    color: rgba(255, 243, 221, .64) !important;
}

.legal-contact a {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    color: #fff3dd;
    font-family: var(--font-heading);
    font-size: clamp(26px, 2.3vw, 38px);
}

.legal-contact a i {
    color: var(--accent-soft);
    font-family: var(--font-body);
    font-size: 17px;
    font-style: normal;
}

.legal-footer {
    padding: 34px 0;
    color: #fff3dd;
    background: #211812;
}

.legal-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.legal-footer a,
.legal-footer span {
    color: rgba(255, 243, 221, .62);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.legal-footer a:hover {
    color: var(--accent-soft);
}

@media (max-width: 959px) {
    .legal-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 58px;
    }

    .legal-heading {
        position: static;
    }

    .legal-heading__meta {
        margin-top: 40px;
    }
}

@media (max-width: 639px) {
    .legal-header__inner {
        min-height: 72px;
    }

    .legal-header__brand img {
        width: 145px;
    }

    .legal-header__brand span {
        font-size: 8px;
    }

    .legal-header__back {
        min-height: 38px;
        gap: 10px;
        padding-inline: 14px;
        font-size: 9px;
    }

    .legal-main {
        padding-top: 58px;
    }

    .legal-heading h1 {
        font-size: clamp(45px, 14.5vw, 64px);
    }

    .legal-content {
        border-radius: 20px 3px 20px 3px;
    }

    .legal-content section {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
        padding: 26px 20px 30px;
    }

    .legal-content section>span {
        padding: 0;
    }

    .legal-content p {
        font-size: 14px;
    }

    .legal-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}










































