

/* Start:/local/templates/zhmakin_adaptive/css/reset.css?17746291391263*/
/* Reset and base styles  */
body {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #333;
    background-color: #fff;
}

* {
    padding: 0;
    margin: 0;
    border: none;
}

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

/* Links */

a, a:link, a:visited  {
    text-decoration: none;;
}

a:hover  {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main, article {
    display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: normal;
    margin: 0;
}

ul, ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

img, svg {
    max-width: 100%;
    height: auto;
}

address {
    font-style: normal;
}

/* Form */

input, textarea, button, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

/* End */


/* Start:/local/templates/zhmakin_adaptive/template_styles.css?177567320115967*/
:root {
    --bg: #f5f1ea;
    --bg-soft: #fcfaf6;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: #ffffff;
    --text: #161616;
    --muted: #5f5b57;
    --line: rgba(22, 22, 22, 0.08);
    --accent: #ff6b4a;
    --accent-soft: #ffe1d7;
    --sky: #dcecf4;
    --shadow: 0 20px 60px rgba(37, 24, 10, 0.08);
    --radius-xl: 36px;
    --radius-lg: 28px;
    --radius-md: 22px;
    --content: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 112px;
}

body {
    min-width: 320px;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top left, rgba(255, 107, 74, 0.12), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(220, 236, 244, 0.85), transparent 24%),
    linear-gradient(180deg, #f8f5ef 0%, #f3eee6 100%);
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image: linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 90%);
}

.page {
    max-width: var(--content);
    margin: 0 auto;
    padding: 20px 24px 42px;
    position: relative;
}

[id] {
    scroll-margin-top: 112px;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 20px;
    position: sticky;
    top: 18px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    background: rgba(255, 250, 244, 0.72);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.brand-logo {
    display: block;
    width: auto;
    max-width: 260px;
    height: 62px;
}

.brand-badge {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #fff 0%, #ffe6de 100%);
    box-shadow: inset 0 0 0 1px rgba(22, 22, 22, 0.06);
    font-weight: 800;
}

.brand-text {
    display: grid;
    gap: 2px;
}

.brand-text strong {
    font-size: 0.98rem;
}

.brand-text small {
    color: var(--muted);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.site-nav a,
.header-link,
.button,
.portfolio-card a {
    text-decoration: none;
}

.site-nav a,
.header-link {
    color: var(--muted);
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.header-link:hover,
.portfolio-card a:hover {
    color: var(--text);
}

.header-menu-panel {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-link {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 0 0 1px rgba(22, 22, 22, 0.06);
}

.mobile-menu-toggle {
    display: none;
    position: relative;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 0 0 1px rgba(22, 22, 22, 0.06);
}

.mobile-menu-toggle span {
    position: absolute;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transform: translateX(-50%);
    transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 17px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 23px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 29px;
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(1) {
    top: 23px;
    transform: translateX(-50%) rotate(45deg);
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(3) {
    top: 23px;
    transform: translateX(-50%) rotate(-45deg);
}

.hero,
.hero-intro,
.section,
.trust,
.contact-block,
.site-footer {
    margin-top: 24px;
}

.hero-intro-card {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 22px;
    align-items: stretch;
}

.hero-intro-copy,
.hero-intro-photo-wrap {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    border-radius: var(--radius-xl);
}

.hero-intro-copy {
    padding: 40px 42px;
    display: grid;
    align-content: end;
}

.hero-intro-lead {
    max-width: 54ch;
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.hero-intro-photo-wrap {
    min-height: 360px;
    padding: 14px;
    background: radial-gradient(circle at top right, rgba(255, 107, 74, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52));
}

.hero-intro-photo {
    position: relative;
    height: 100%;
    min-height: 332px;
    border-radius: 28px;
    overflow: hidden;
    /*background: #eadbcf;*/
}

.hero-intro-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
    align-items: stretch;
}

.hero-copy,
.hero-card,
.section,
.trust,
.contact-block {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.hero-copy,
.hero-card,
.section,
.contact-block {
    border-radius: var(--radius-xl);
}

.hero-copy {
    padding: 48px;
}

.kicker {
    margin: 0 0 16px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    font-weight: 700;
}

h1,
h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.05em;
}

h1 {
    max-width: 11ch;
    font-size: clamp(3.4rem, 7vw, 5rem);
}

h1 span {
    color: var(--accent);
}

h2 {
    max-width: 15ch;
    font-size: clamp(2.1rem, 4vw, 3.8rem);
}

h3 {
    margin: 0;
    font-size: 1.3rem;
}

.hero-lead,
.soft-card p,
.portfolio-card p,
.service-item p,
.process-line p,
.contact-copy p,
.hero-note p,
.trust p {
    color: var(--muted);
    line-height: 1.7;
}

.hero-lead {
    max-width: 60ch;
    margin: 24px 0 0;
    font-size: 1.04rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: #fff;
    background: var(--text);
    box-shadow: 0 14px 30px rgba(22, 22, 22, 0.14);
}

.button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: inset 0 0 0 1px rgba(22, 22, 22, 0.07);
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.hero-meta article,
.soft-card,
.portfolio-card,
.service-item,
.process-line article {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 0 0 1px rgba(22, 22, 22, 0.06),
    0 16px 34px rgba(37, 24, 10, 0.06);
}

.hero-meta article {
    padding: 18px;
}

.hero-meta strong,
.process-line span {
    display: block;
    font-size: 1rem;
    font-weight: 800;
}

.hero-meta span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.hero-visual {
    display: grid;
    gap: 22px;
}

.hero-card {
    padding: 22px;
}

.hero-photo {
    min-height: 520px;
}

.photo-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.photo-caption span,
.card-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
}

.photo-caption span::before,
.card-label::before {
    content: "";
    width: 22px;
    height: 1px;
    background: currentColor;
}

.photo-caption button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--surface-strong);
    box-shadow: inset 0 0 0 1px rgba(22, 22, 22, 0.06);
    text-decoration: none;
}

.photo-stage {
    position: relative;
    min-height: 420px;
    margin-top: 18px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.88)),
    radial-gradient(circle at top right, rgba(255, 107, 74, 0.2), transparent 28%),
    linear-gradient(135deg, #fff4eb 0%, #eef5f8 100%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.orb-one {
    width: 280px;
    height: 280px;
    right: -40px;
    top: -40px;
    background: rgba(255, 107, 74, 0.16);
}

.orb-two {
    width: 220px;
    height: 220px;
    left: -40px;
    bottom: -20px;
    background: rgba(138, 201, 255, 0.2);
}

.mic-line {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 220px;
    transform: translate(-50%, -55%);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(22, 22, 22, 0.9), rgba(22, 22, 22, 0.45));
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.55),
    0 24px 50px rgba(22, 22, 22, 0.12);
}

.mic-line::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -72px;
    width: 8px;
    height: 96px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(22, 22, 22, 0.72);
}

.waveform {
    position: absolute;
    left: 50%;
    bottom: 38px;
    transform: translateX(-50%);
    display: flex;
    align-items: end;
    gap: 10px;
}

.waveform span {
    width: 8px;
    border-radius: 999px;
    background: linear-gradient(180deg, #1a1a1a, #ff6b4a);
}

.waveform span:nth-child(1) {
    height: 28px;
}

.waveform span:nth-child(2) {
    height: 48px;
}

.waveform span:nth-child(3) {
    height: 74px;
}

.waveform span:nth-child(4) {
    height: 52px;
}

.waveform span:nth-child(5) {
    height: 88px;
}

.waveform span:nth-child(6) {
    height: 44px;
}

.waveform span:nth-child(7) {
    height: 70px;
}

.waveform span:nth-child(8) {
    height: 38px;
}

.waveform span:nth-child(9) {
    height: 26px;
}

.hero-note p {
    margin: 0;
    font-size: 1.05rem;
}

.trust {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    border-radius: 24px;
}

.trust p {
    margin: 0;
}

.trust div {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.trust span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: inset 0 0 0 1px rgba(22, 22, 22, 0.05);
    color: var(--muted);
}

.section {
    padding: 40px;
}

.section-head {
    display: grid;
    gap: 10px;
    margin-bottom: 26px;
}

.about-grid,
.portfolio-grid,
.services-grid,
.process-line {
    display: grid;
    gap: 16px;
}

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

.soft-card,
.service-item,
.process-line article {
    padding: 24px;
}

.card-accent {
    background: linear-gradient(180deg, rgba(255, 225, 215, 0.95), rgba(255, 255, 255, 0.78));
}

.soft-card p,
.service-item p,
.portfolio-card p,
.process-line p {
    margin: 12px 0 0;
}

.portfolio-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
}

.portfolio-card {
    min-height: 280px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.9)),
    linear-gradient(135deg, rgba(255, 225, 215, 0.75), rgba(220, 236, 244, 0.7));
}

.portfolio-card.large {
    background: radial-gradient(circle at top right, rgba(255, 107, 74, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, #fff0e9 0%, #eef5f8 100%);
}

.portfolio-card a {
    margin-top: auto;
    padding-top: 20px;
    color: var(--text);
    font-weight: 700;
}

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

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

.process-line article {
    min-height: 210px;
}

.process-line span {
    color: var(--accent);
}

.contact-block {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
    padding: 36px 40px;
    border-radius: var(--radius-xl);
}

.contact-actions {
    display: grid;
    align-content: center;
    gap: 14px;
}

.site-footer {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 14px;
    padding: 4px 40px 0 0;
    margin-top: 16px;
}

.footer-label {
    margin: 0;
    color: var(--accent);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
}

.footer-brand {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 40px;
    padding: 0;
}

.footer-brand img {
    display: block;
    width: auto;
    max-width: 154px;
    height: 34px;
}

@media (max-width: 1120px) {
    .site-header,
    .hero-intro-card,
    .hero,
    .portfolio-grid,
    .services-grid,
    .process-line,
    .contact-block,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .site-header,
    .trust {
        border-radius: 28px;
    }

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

    .trust div {
        justify-content: flex-start;
    }

    .site-footer {
        justify-content: flex-end;
        align-items: flex-end;
    }

    .site-header {
        align-items: center;
        flex-wrap: wrap;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .header-menu-panel {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 18px 0 6px;
    }

    .site-header.menu-open .header-menu-panel {
        display: flex;
    }

    .site-nav {
        width: 100%;
        flex-direction: column;
        gap: 14px;
    }

    .header-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 860px) {
    .page {
        padding-inline: 16px;
    }

    .hero-intro-copy,
    .hero-copy,
    .section,
    .contact-block {
        padding: 28px;
    }

    .site-footer {
        padding-right: 28px;
    }

    .hero-meta {
        grid-template-columns: 1fr;
    }

    .hero-photo {
        min-height: 420px;
    }

    .hero-intro-photo-wrap {
        min-height: 300px;
    }
}

@media (max-width: 560px) {
    html {
        scroll-padding-top: 96px;
    }

    [id] {
        scroll-margin-top: 96px;
    }

    h1 {
        font-size: 3em;
        max-width: 100%;
    }

    h2 {
        font-size: 2.25rem;
        max-width: 100%;
    }

    .button {
        width: 100%;
    }

    .hero-actions {
        display: grid;
    }

    .site-header {
        padding: 18px;
        border-radius: 24px;
    }

    .brand {
        max-width: calc(100% - 68px);
    }

    .brand-logo {
        max-width: 210px;
        height: 50px;
    }
}

/* End */


/* Start:/local/templates/zhmakin_adaptive/components/bitrix/menu/top-menu/style.css?1774628242239*/
.site-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.site-nav a {
	color: var(--muted);
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

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

/* End */
/* /local/templates/zhmakin_adaptive/css/reset.css?17746291391263 */
/* /local/templates/zhmakin_adaptive/template_styles.css?177567320115967 */
/* /local/templates/zhmakin_adaptive/components/bitrix/menu/top-menu/style.css?1774628242239 */
