:root {
    --bg-950: #06080d;
    --bg-900: #0a0f17;
    --bg-850: #0f1621;
    --bg-800: #111b29;
    --surface: rgba(17, 27, 41, 0.86);
    --surface-soft: rgba(255, 255, 255, 0.06);
    --surface-strong: rgba(8, 12, 20, 0.92);
    --text: #f5f7fb;
    --muted: #9ba7ba;
    --muted-strong: #cbd5e1;
    --accent: #f8b400;
    --accent-strong: #ffd766;
    --success: #8ad466;
    --danger: #ff8e78;
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.2);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: min(1180px, calc(100% - 2rem));
    --header-height: 84px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: clip;
    background:
        radial-gradient(circle at top left, rgba(248, 180, 0, 0.14), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.05), transparent 22%),
        linear-gradient(155deg, var(--bg-950) 0%, var(--bg-900) 42%, var(--bg-850) 100%);
    color: var(--text);
    font-family: "Manrope", "Segoe UI", sans-serif;
    line-height: 1.6;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
}

body::before {
    background:
        repeating-linear-gradient(-62deg, transparent 0 42px, rgba(248, 180, 0, 0.035) 42px 44px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0));
    opacity: 0.75;
}

body::after {
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.04), transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(248, 180, 0, 0.06), transparent 24%);
    z-index: -3;
}

body.nav-open {
    overflow: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

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

figure {
    margin: 0;
}

strong {
    color: var(--text);
}

[id] {
    scroll-margin-top: calc(var(--header-height) + 20px);
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1200;
    transform: translateY(-160%);
    border-radius: 999px;
    padding: 0.9rem 1.15rem;
    background: var(--accent);
    color: #10131a;
    font-weight: 800;
    transition: transform 0.25s ease;
}

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

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: padding 0.25s ease;
}

.site-body.has-scrolled .site-header {
    padding: 0.7rem 0;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 0.9rem 1.25rem;
    background: rgba(9, 13, 20, 0.48);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-body.has-scrolled .nav-shell {
    background: rgba(8, 12, 20, 0.92);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.32);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.brand img {
    height: 46px;
    width: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.15rem;
}

.site-nav a {
    color: var(--muted);
    font-weight: 700;
    font-size: 0.96rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
    transform: translateY(-1px);
}

.site-nav__cta {
    margin-left: 0.35rem;
}

.site-nav__catalog {
    margin-left: 0.2rem;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.26rem;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
}

.nav-toggle__bar {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.floating-actions {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 1rem;
    z-index: 950;
    pointer-events: none;
}

.floating-action {
    position: fixed;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    border-radius: 999px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(8, 12, 20, 0.9);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    color: var(--text);
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, border-color 0.2s ease;
    pointer-events: auto;
}

.floating-action:first-child {
    left: 1rem;
}

.floating-action:last-child {
    right: 1rem;
}

.floating-action:hover,
.floating-action:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(248, 180, 0, 0.45);
}

.floating-action i {
    color: var(--accent);
    font-size: 1.15rem;
}

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
}

.hero {
    min-height: 100vh;
    padding: calc(var(--header-height) + 3rem) 0 4.5rem;
    display: flex;
    align-items: center;
}

.hero--video {
    min-height: 100svh;
    padding: calc(var(--header-height) + 1.75rem) 0 2rem;
    align-items: center;
}

.hero__media,
.page-hero__backdrop {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.hero__media video,
.page-hero__backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__media::before,
.page-hero__backdrop::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(6, 8, 13, 0.92) 0%, rgba(10, 15, 23, 0.78) 48%, rgba(6, 8, 13, 0.9) 100%),
        radial-gradient(circle at 20% 20%, rgba(248, 180, 0, 0.12), transparent 24%);
}

.hero--video .hero__media::before {
    background:
        linear-gradient(180deg, rgba(6, 8, 13, 0.36) 0%, rgba(6, 8, 13, 0.18) 35%, rgba(6, 8, 13, 0.58) 100%),
        radial-gradient(circle at 18% 24%, rgba(248, 180, 0, 0.1), transparent 24%);
}

.hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0, transparent 12%, rgba(248, 180, 0, 0.18) 12%, rgba(248, 180, 0, 0.18) 13%, transparent 13%, transparent 100%),
        linear-gradient(0deg, rgba(6, 8, 13, 0.22), rgba(6, 8, 13, 0.22));
    opacity: 0.6;
    pointer-events: none;
}

.hero--video::before {
    background:
        linear-gradient(90deg, transparent 0, transparent 12%, rgba(248, 180, 0, 0.12) 12%, rgba(248, 180, 0, 0.12) 13%, transparent 13%, transparent 100%);
    opacity: 0.42;
}

.hero__grid,
.hero__single,
.split-grid,
.contact-grid,
.cta-band,
.teaser-grid,
.process-grid {
    display: grid;
    gap: 1.35rem;
}

.hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: end;
}

.hero__single {
    width: 100%;
    min-height: calc(100svh - var(--header-height) - 3.75rem);
    align-items: center;
    justify-items: center;
}

.hero__content,
.hero__aside,
.surface-card,
.service-card,
.process-card,
.showcase-card,
.content-card,
.teaser-card,
.contact-panel,
.cta-band,
.gallery-summary {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
        var(--surface);
    box-shadow: var(--shadow);
}

.hero__content {
    padding: 0.25rem 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.hero__content--compact {
    max-width: min(760px, 100%);
    padding: clamp(1.35rem, 3vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(8, 12, 20, 0.28), rgba(8, 12, 20, 0.1)),
        rgba(8, 12, 20, 0.06);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(8px);
    text-align: center;
}

.hero__aside,
.surface-card,
.content-card,
.contact-panel,
.gallery-summary {
    padding: 1.5rem;
}

.eyebrow,
.section-label,
.panel-label,
.meta-pill,
.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    max-width: 100%;
    border-radius: 999px;
    border: 1px solid rgba(248, 180, 0, 0.3);
    background: rgba(248, 180, 0, 0.12);
    color: var(--accent-strong);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.72rem;
    padding: 0.55rem 0.8rem;
}

.hero__title,
.page-title,
.section-heading__title,
.cta-band__title {
    margin: 1rem 0 0;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.hero__title {
    max-width: 11ch;
    font-size: clamp(3rem, 6vw, 5.75rem);
}

.hero__title--compact {
    max-width: 9ch;
    margin: 0;
    font-size: clamp(2.8rem, 5.3vw, 4.9rem);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    margin-inline: auto;
}

.hero__title-line {
    display: inline;
}

.hero__title .highlight,
.section-heading__title .highlight,
.page-title .highlight {
    color: var(--accent);
}

.hero__lead,
.page-lead,
.section-heading__text,
.content-card p,
.teaser-card p,
.service-card p,
.process-card p,
.contact-note,
.gallery-summary p {
    color: var(--muted-strong);
}

.hero__lead,
.page-lead {
    max-width: 62ch;
    font-size: clamp(1.05rem, 1.8vw, 1.24rem);
    margin: 1.35rem 0 0;
}

.hero__actions,
.stat-pill-list,
.footer-links,
.social-links,
.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero__actions--hero {
    margin-top: 1.5rem;
    justify-content: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 52px;
    padding: 0.9rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button--primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #11151d;
    box-shadow: 0 14px 32px rgba(248, 180, 0, 0.25);
}

.button--secondary {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--text);
}

.button--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text);
}

.button--inline {
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--accent-strong);
    justify-content: flex-start;
    box-shadow: none;
}

.button--inline:hover,
.button--inline:focus-visible {
    transform: none;
    color: var(--accent);
}

.chip-list {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.chip-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.65rem 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--muted-strong);
    font-size: 0.92rem;
}

.chip-list i {
    color: var(--accent);
}

.metric {
    padding: 1rem 0;
    border-top: 1px solid var(--line);
}

.metric:first-of-type {
    margin-top: 1rem;
}

.metric__value {
    display: block;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: clamp(1.65rem, 4vw, 2.3rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.metric__label {
    display: block;
    margin-top: 0.35rem;
    color: var(--muted);
    font-weight: 700;
}

.check-list {
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.check-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
    color: var(--muted-strong);
}

.check-list i {
    color: var(--accent);
    margin-top: 0.22rem;
}

.section {
    position: relative;
    padding: clamp(4.75rem, 8vw, 7rem) 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2rem;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading__title {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading__text {
    margin-top: 1rem;
    font-size: 1.04rem;
}

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

.section--about .container {
    display: grid;
    gap: 2rem;
}

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

.content-card {
    height: 100%;
    display: grid;
    align-content: start;
}

.content-card + .content-card {
    margin-top: 1rem;
}

.content-card__icon,
.service-card__icon,
.process-card__icon,
.contact-item__icon,
.teaser-card__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(248, 180, 0, 0.13);
    color: var(--accent);
    font-size: 1.15rem;
}

.content-card__icon,
.service-card__icon,
.process-card__icon,
.teaser-card__icon {
    margin-bottom: 1rem;
}

.info-stack {
    display: grid;
    gap: 1rem;
}

.service-grid,
.showcase-grid,
.teaser-grid {
    display: grid;
    gap: 1.15rem;
}

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

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

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

.service-card,
.process-card,
.teaser-card {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
}

.service-card > img {
    width: 84px;
    height: 84px;
    object-fit: contain;
}

.service-card::before,
.process-card::before,
.teaser-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), transparent 70%);
}

.service-card h3,
.process-card h3,
.teaser-card h3,
.content-card h3,
.contact-panel h3,
.gallery-summary h3,
.showcase-card__title {
    margin: 1rem 0 0.55rem;
    font-size: 1.35rem;
    line-height: 1.2;
}

.service-card p,
.process-card p,
.teaser-card p,
.content-card p {
    margin: 0;
}

.service-card .button--inline,
.showcase-card .button--inline {
    margin-top: 1rem;
}

.showcase-card {
    overflow: hidden;
}

.showcase-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.showcase-card__image-link {
    display: block;
    color: inherit;
}

.showcase-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 8, 13, 0.05) 25%, rgba(6, 8, 13, 0.75) 100%);
}

.showcase-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.showcase-card:hover .showcase-card__image img,
.showcase-card:focus-within .showcase-card__image img {
    transform: scale(1.08);
}

.showcase-card__image-link:focus-visible {
    outline: 2px solid rgba(248, 180, 0, 0.85);
    outline-offset: -2px;
}

.showcase-card__body {
    padding: 1.35rem;
    display: grid;
    gap: 0.2rem;
}

.showcase-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.showcase-card__title {
    margin-top: 0.9rem;
}

.showcase-card__text {
    margin: 0.75rem 0 0;
    color: var(--muted-strong);
}

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

.process-card__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    color: var(--accent-strong);
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-weight: 700;
}

.cta-band {
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: center;
    gap: 1.5rem;
    padding: 1.75rem;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(248, 180, 0, 0.16), rgba(255, 255, 255, 0.04)),
        rgba(8, 12, 20, 0.92);
}

.cta-band__content {
    width: min(760px, 100%);
}

.cta-band__title {
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    margin: 0;
}

.cta-band p {
    margin: 0.85rem auto 0;
    max-width: 62ch;
    color: var(--muted-strong);
}

.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    width: 100%;
}

.catalog-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(980px, 100%);
}

.catalog-links .button {
    width: 100%;
}

.contact-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
}

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

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

.contact-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
}

.contact-item:first-child {
    border-top: 0;
}

.contact-item__label {
    display: block;
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.74rem;
}

.contact-item__value {
    display: block;
    margin-top: 0.2rem;
    color: var(--text);
    font-weight: 700;
}

.contact-note {
    margin: 0;
}

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

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

.field {
    display: grid;
    gap: 0.45rem;
}

.field--full {
    grid-column: 1 / -1;
}

.field label {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.field input,
.field textarea {
    width: 100%;
    min-height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    padding: 0.95rem 1rem;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    border-color: rgba(248, 180, 0, 0.7);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(248, 180, 0, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
    color: #7b8697;
}

.status-message {
    min-height: 1.35rem;
    color: var(--muted);
    font-weight: 700;
}

.status-message.is-success {
    color: var(--success);
}

.status-message.is-error {
    color: var(--danger);
}

.page-hero {
    padding: calc(var(--header-height) + 4rem) 0 3.5rem;
}

.page-title {
    max-width: 12ch;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.page-lead {
    max-width: 60ch;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.3rem;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.92rem;
}

.breadcrumb span {
    opacity: 0.55;
}

.stat-pill-list {
    margin-top: 1.45rem;
}

.stat-pill {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    letter-spacing: 0;
    text-transform: none;
    font-size: 0.95rem;
    font-weight: 700;
}

.gallery-summary {
    display: grid;
    gap: 1rem;
}

.gallery-summary__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.gallery-card {
    display: block;
    position: relative;
    min-height: 240px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--surface-strong);
    box-shadow: var(--shadow);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 8, 13, 0.04) 28%, rgba(6, 8, 13, 0.82) 100%);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
    transform: scale(1.08);
}

.gallery-card__meta {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    color: #fff;
    font-weight: 800;
}

.gallery-card__meta i {
    color: var(--accent-strong);
}

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

.site-footer {
    position: relative;
    padding: 2rem 0 2.5rem;
    border-top: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(6, 8, 13, 0) 0%, rgba(6, 8, 13, 0.82) 100%),
        rgba(6, 8, 13, 0.8);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copy {
    color: var(--muted);
}

.footer-links a {
    color: var(--muted-strong);
    font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--accent-strong);
}

.footer-links,
.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(248, 180, 0, 0.45);
}

[data-reveal] {
    opacity: 1;
    transform: none;
}

@media (max-width: 1100px) {
    .hero__grid,
    .hero__single,
    .split-grid,
    .contact-grid,
    .cta-band {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .showcase-grid,
    .process-grid,
    .teaser-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-band__actions {
        justify-content: center;
    }

    .catalog-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .hero__title,
    .page-title {
        max-width: none;
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 76px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        top: calc(var(--header-height) + 14px);
        right: 1rem;
        left: 1rem;
        display: grid;
        gap: 0.6rem;
        padding: 1rem;
        border-radius: 24px;
        border: 1px solid var(--line);
        background: rgba(8, 12, 20, 0.96);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
        transform: translateY(-18px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav a {
        padding: 0.55rem 0.4rem;
    }

    .site-nav__cta {
        margin-left: 0;
        margin-top: 0.25rem;
        width: 100%;
    }

    .site-nav__catalog {
        margin-left: 0;
        margin-top: 0.25rem;
        width: 100%;
    }

    .hero {
        min-height: auto;
    }

    .hero--video {
        min-height: 100svh;
        padding: calc(var(--header-height) + 1.1rem) 0 1.6rem;
    }

    .hero__single {
        min-height: calc(100svh - var(--header-height) - 2.6rem);
    }

    .hero__title--compact {
        max-width: 10ch;
        font-size: clamp(2.2rem, 9vw, 3.5rem);
    }

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

@media (max-width: 640px) {
    :root {
        --container: min(100% - 1.25rem, 100%);
    }

    .hero {
        padding-bottom: 3.4rem;
    }

    .hero--video {
        padding-bottom: 1.2rem;
    }

    .hero__content--compact {
        width: 100%;
        min-width: 0;
        padding: 1.1rem;
        border-radius: 22px;
    }

    .hero__title--compact {
        max-width: none;
        font-size: clamp(1.65rem, 7.8vw, 2.45rem);
    }

    .hero__title-line {
        display: block;
    }

    .hero__title-line--bottom {
        white-space: nowrap;
    }

    .hero__button--desktop {
        display: none;
    }

    .service-grid,
    .showcase-grid,
    .process-grid,
    .teaser-grid,
    .form-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .button,
    .hero__actions .button,
    .cta-band__actions .button {
        width: 100%;
    }

    .catalog-links {
        grid-template-columns: 1fr;
    }

    .floating-actions {
        right: 0;
        left: 0;
        bottom: 0.75rem;
    }

    .floating-action {
        width: 48px;
        height: 48px;
        padding: 0;
        border-radius: 50%;
        background: rgba(6, 8, 13, 0.96);
        bottom: 0.75rem;
        justify-content: center;
    }

    .floating-action span {
        display: none;
    }

    .floating-action i {
        margin: 0;
        font-size: 1.1rem;
    }

    .floating-action:first-child {
        left: 0.75rem;
    }

    .floating-action:last-child {
        right: 0.75rem;
    }

    .section {
        padding: 4.4rem 0;
    }

    .hero__aside,
    .surface-card,
    .content-card,
    .contact-panel,
    .gallery-summary,
    .service-card,
    .process-card,
    .teaser-card,
    .showcase-card__body,
    .cta-band {
        padding: 1.2rem;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
