/* Main stylesheet for Prinstagram Theme */

:root {
    --color-black: #040404;
    --color-orange: #FF3D00;
    --color-green: #001D08;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Rubik', sans-serif;
    --font-script: 'Sofia', cursive;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    line-height: 1.5;
    color: var(--color-green);
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

/* Header styles */
.site-topbar {
    background: var(--color-green);
    color: #fff;
}

.site-topbar__inner {
    width: min(100% - 120px, 1480px);
    min-height: 40px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 36px;
}

.site-topbar__language {
    position: relative;
}

.site-topbar__language-toggle,
.site-topbar__link,
.site-topbar__language-menu a {
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    text-transform: capitalize;
    text-decoration: none;
}

.site-topbar__language-toggle {
    padding: 0 16px 0 0;
    list-style: none;
    cursor: pointer;
}

.site-topbar__language-toggle::-webkit-details-marker {
    display: none;
}

.site-topbar__language-toggle::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-70%) rotate(45deg);
}

.site-topbar__language-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    z-index: 20;
    min-width: 120px;
    margin: 0;
    padding: 10px 12px;
    list-style: none;
    background: var(--color-green);
    box-shadow: 0 12px 24px 0 #001D0830;
}

.site-topbar__language:not([open]) .site-topbar__language-menu {
    display: none;
}

.site-header {
    margin: 0;
    padding: 0;
    background: var(--color-black);
    color: #fff;
}

.site-header--subpage {
    background: #fff;
    color: var(--color-green);
}

.site-header__inner {
    width: min(100% - 120px, 1480px);
    min-height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-branding {
    flex: 0 0 auto;
}

.custom-logo-link,
.site-logo-text {
    display: inline-flex;
    align-items: center;
}

.custom-logo {
    width: auto;
    max-height: 48px;
}

.site-logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    color: #fff;
}

.site-header--subpage .site-logo-text {
    color: var(--color-green);
}

.menu-toggle {
    display: none;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Navigation */
.main-navigation {
    flex: 1 1 auto;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    text-decoration: none;
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    transition: color 0.2s ease;
}

.site-header--subpage .main-navigation a {
    color: var(--color-green);
}

.main-navigation a:hover,
.main-navigation a:focus {
    color: var(--color-orange);
}

.header-order-button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 9px 26px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    text-decoration: none;
    white-space: nowrap;
}

.header-order-button,
.button--primary {
    background: var(--color-orange);
    color: #fff;
}

.header-order-button {
    flex: 0 0 auto;
}

.site-main {
    margin: 0;
    padding: 0;
}

/* Page hero */
.page-hero {
    margin: 0;
    background-color: #FFF5F1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-hero__inner {
    width: min(100% - 120px, 1480px);
    min-height: 360px;
    margin: 0 auto;
    padding: 92px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero__title {
    margin: 0 0 22px;
    color: var(--color-green);
    font-family: var(--font-heading);
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 700;
    line-height: 84px;
    letter-spacing: 0;
    text-align: center;
}

.page-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
}

.page-hero__breadcrumb a {
    color: var(--color-orange);
    text-decoration: none;
}

.page-hero__breadcrumb span {
    color: #646464;
}

/* Hero */
.home-hero {
    background-color: #e9e9e9;
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.home-hero__inner {
    width: min(100% - 120px, 1480px);
    min-height: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 68px 0;
}

.home-hero__content {
    max-width: 620px;
}

.home-hero__title {
    margin: 0 0 36px;
    color: var(--color-green);
    font-family: var(--font-heading);
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.235;
    letter-spacing: 0;
}

.home-hero__text {
    margin: 0 0 34px;
    color: rgba(0, 29, 8, 0.72);
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.home-hero__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.button--primary {
    box-shadow: 0 8px 16px 0 #FF3D0033;
}

.button--secondary {
    color: var(--color-green);
    background: transparent;
    border: 1px solid #001D081A;
}

/* Service highlights */
.service-highlights {
    background: #FFECE7;
}

.service-highlights__inner {
    width: min(100% - 120px, 1480px);
    margin: 0 auto;
    display: flex;
    gap: 72px;
    justify-content: space-between;
    padding: 80px 0;
}

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    flex: 1 1 0;
    min-width: 0;
}

.service-card__icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    object-fit: contain;
}

.service-card__content {
    max-width: 380px;
}

.service-card__title {
    margin: 0 0 12px;
    color: var(--color-green);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0;
}

.service-card__text {
    margin: 0 0 18px;
    color: #646464;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #646464;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-card__arrow {
    width: 14px;
    height: 14px;
    background-color: currentColor;
    display: inline-block;
    mask: url('../images/arrow-right-hover.svg') center / contain no-repeat;
    -webkit-mask: url('../images/arrow-right-hover.svg') center / contain no-repeat;
}

.service-card__link:hover,
.service-card__link:focus {
    color: var(--color-orange);
}

/* Personalized approach */
.personalized-approach {
    background: #fff;
    overflow: hidden;
}

.personalized-approach__inner {
    width: min(100% - 120px, 1480px);
    min-height: 650px;
    margin: 0 auto;
    padding: 96px 0 100px;
    display: grid;
    grid-template-columns: minmax(0, 610px) minmax(500px, 1fr);
    align-items: center;
    gap: 80px;
}

.personalized-approach__title {
    max-width: 570px;
    margin: 0 0 28px;
    color: var(--color-green);
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 66px;
    letter-spacing: 0;
}

.personalized-approach__text {
    max-width: 640px;
    margin: 0 0 34px;
    color: #646464;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0;
}

.personalized-approach__points {
    max-width: none;
    margin: 0 0 38px;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: max-content max-content;
    column-gap: 78px;
    row-gap: 16px;
}

.personalized-approach__points li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-green);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0;
    white-space: nowrap;
}

.personalized-approach__points img {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    object-fit: contain;
}

.personalized-approach__button {
    min-width: 90px;
}

.personalized-approach__visual {
    position: relative;
    width: min(100%, 700px);
    min-height: 455px;
    margin-left: auto;
}

.personalized-approach__visual img {
    position: absolute;
    height: auto;
}

.personalized-approach__stain {
    left: -70px;
    bottom: -90px;
    width: 760px;
    z-index: 1;
}

.personalized-approach__image {
    top: 0;
    border-radius: 7px;
    z-index: 2;
}

.personalized-approach__image--left {
    left: 58px;
    width: 244px;
}

.personalized-approach__image--right {
    left: 330px;
    width: 285px;
}

.personalized-approach__experience {
    left: 90px;
    bottom: 22px;
    width: 305px;
    z-index: 4;
}

.personalized-approach__hat {
    left: 0;
    bottom: 28px;
    width: 78px;
    z-index: 3;
}

.personalized-approach__bag {
    right: 0;
    top: 118px;
    width: 82px;
    z-index: 3;
}

/* Service offerings */
.service-offerings {
    background: #FAFAFA;
}

.service-offerings__inner {
    width: min(100% - 120px, 1480px);
    margin: 0 auto;
    padding: 106px 0 108px;
}

.service-offerings__eyebrow {
    margin: 0 0 8px;
    color: var(--color-orange);
    font-family: var(--font-script);
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
    text-align: center;
}

.service-offerings__title {
    margin: 0 0 58px;
    color: var(--color-green);
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 66px;
    letter-spacing: 0;
    text-align: center;
}

.service-offerings__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 58px;
    row-gap: 68px;
}

.service-offering {
    min-height: 236px;
    padding: 38px 32px 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: transparent;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-offering:hover {
    background: #fff;
    box-shadow: 0 20px 40px 0 #001D081A;
    transform: translateY(-2px);
}

.service-offering__icon {
    width: 70px;
    height: 70px;
    margin: 0 0 24px;
    object-fit: contain;
}

.service-offering__title {
    margin: 0 0 14px;
    color: var(--color-green);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0;
    text-align: center;
    transition: color 0.2s ease;
}

.service-offering:hover .service-offering__title {
    color: var(--color-orange);
}

.service-offering__text {
    max-width: 355px;
    margin: 0;
    color: #646464;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0;
    text-align: center;
}

/* Facts strip */
.facts-strip {
    background: #FFF5F1;
}

.facts-strip__inner {
    width: min(100% - 120px, 1480px);
    margin: 0 auto;
    padding: 72px 0 70px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
}

.facts-strip__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.facts-strip__icon {
    width: 78px;
    height: 78px;
    margin: 0 0 20px;
    object-fit: contain;
}

.facts-strip__number {
    margin: 0 0 14px;
    color: var(--color-green);
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: 0;
    text-align: center;
}

.facts-strip__label {
    color: #646464;
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
}

/* FAQ */
.home-faq {
    position: relative;
    background: #fff;
    overflow: hidden;
}

.home-faq__inner {
    position: relative;
    z-index: 2;
    width: min(100% - 120px, 1480px);
    margin: 0 auto;
    padding: 112px 0 92px;
    display: grid;
    grid-template-columns: minmax(0, 640px) minmax(420px, 1fr);
    align-items: center;
    gap: 96px;
}

.home-faq__shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.home-faq__shape--left {
    left: -78px;
    bottom: -205px;
    width: 610px;
}

.home-faq__shape--right {
    right: 0;
    top: 50%;
    width: 190px;
    transform: translateY(-22%);
}

.home-faq__eyebrow {
    margin: 0 0 8px;
    color: var(--color-orange);
    font-family: var(--font-script);
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
}

.home-faq__title {
    margin: 0 0 34px;
    color: var(--color-green);
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 66px;
    letter-spacing: 0;
}

.home-faq__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.home-faq__item {
    background: #fff;
}

.home-faq__question {
    margin: 0;
}

.home-faq__trigger {
    width: 100%;
    min-height: 74px;
    padding: 14px 11px 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid #001D081A;
    background: #fff;
    color: var(--color-green);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0;
    text-align: left;
    cursor: pointer;
}

.home-faq__item.is-active .home-faq__trigger {
    border-color: var(--color-orange);
    background: var(--color-orange);
    color: #fff;
}

.home-faq__toggle {
    position: relative;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-green);
    border-radius: 2px;
}

.home-faq__toggle::before,
.home-faq__toggle::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 2px;
    background: #fff;
}

.home-faq__toggle::after {
    transform: rotate(90deg);
}

.home-faq__item.is-active .home-faq__toggle {
    background: #fff;
}

.home-faq__item.is-active .home-faq__toggle::before,
.home-faq__item.is-active .home-faq__toggle::after {
    background: var(--color-green);
}

.home-faq__item.is-active .home-faq__toggle::after {
    opacity: 0;
}

.home-faq__panel p {
    max-width: 570px;
    margin: 18px 0 0;
    padding: 0 28px;
    color: #646464;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0;
}

.home-faq__visual {
    display: flex;
    justify-content: center;
}

.home-faq__shirt {
    width: min(100%, 520px);
    border-radius: 7px;
}

/* About page */
.about-intro {
    background: #fff;
    overflow: hidden;
}

.about-intro__inner {
    width: min(100% - 120px, 1480px);
    min-height: 650px;
    margin: 0 auto;
    padding: 106px 0 110px;
    display: grid;
    grid-template-columns: minmax(0, 560px) minmax(520px, 1fr);
    align-items: center;
    gap: 112px;
}

.about-intro__eyebrow {
    margin: 0 0 10px;
    color: var(--color-orange);
    font-family: var(--font-script);
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
}

.about-intro__title {
    max-width: 520px;
    margin: 0 0 18px;
    color: var(--color-green);
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 66px;
    letter-spacing: 0;
}

.about-intro__text {
    max-width: 560px;
    margin: 0 0 26px;
    color: #646464;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0;
}

.about-intro__points {
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
}

.about-intro__points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-green);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0;
}

.about-intro__check {
    width: 16px;
    height: 12px;
    flex: 0 0 16px;
    display: inline-block;
    background: var(--color-orange);
    mask: url('../images/checkmark-without-background.svg') center / contain no-repeat;
    -webkit-mask: url('../images/checkmark-without-background.svg') center / contain no-repeat;
}

.about-intro__button {
    min-width: 88px;
}

.about-intro__visual {
    position: relative;
    width: min(100%, 860px);
    min-height: 640px;
    margin-left: -80px;
}

.about-intro__visual img {
    position: absolute;
    height: auto;
}

.about-intro__splash {
    left: 50%;
    right: auto;
    top: 50%;
    bottom: auto;
    width: 1180px;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.about-intro__image {
    border-radius: 7px;
    object-fit: cover;
    z-index: 2;
}

.about-intro__image--color {
    top: 28px;
    right: 70px;
    width: 520px;
}

.about-intro__image--printer {
    left: 120px;
    bottom: 112px;
    width: 410px;
    z-index: 3;
}

.why-choose-about {
    background: #fff;
    overflow: hidden;
}

.why-choose-about__inner {
    width: min(100% - 120px, 1480px);
    min-height: 680px;
    margin: 0 auto;
    padding: 96px 0 104px;
    display: grid;
    grid-template-columns: minmax(0, 610px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(48px, 5.6vw, 84px);
}

.why-choose-about__eyebrow {
    margin: 0 0 10px;
    color: var(--color-orange);
    font-family: var(--font-script);
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
}

.why-choose-about__title {
    max-width: 520px;
    margin: 0 0 14px;
    color: var(--color-green);
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 66px;
    letter-spacing: 0;
}

.why-choose-about__text {
    max-width: 610px;
    margin: 0 0 22px;
    color: #646464;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0;
}

.why-choose-about__points {
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: max-content max-content;
    column-gap: 54px;
    row-gap: 14px;
}

.why-choose-about__points li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-green);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0;
    white-space: nowrap;
}

.why-choose-about__points img {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    object-fit: contain;
}

.why-choose-about__button {
    min-width: 155px;
}

.why-choose-about__visual {
    position: relative;
    width: min(100%, 720px);
    aspect-ratio: 720 / 610;
    margin-left: auto;
}

.why-choose-about__visual img {
    position: absolute;
    height: auto;
}

.why-choose-about__stain {
    right: -2.8%;
    bottom: 4.9%;
    width: 58.4%;
    opacity: 0.16;
    z-index: 1;
}

.why-choose-about__image {
    border-radius: 7px;
    object-fit: cover;
    z-index: 2;
}

.why-choose-about__image--first {
    left: 7.2%;
    top: 12.5%;
    width: 38.2%;
}

.why-choose-about__image--second {
    left: 42.4%;
    top: 12.1%;
    width: 42%;
    z-index: 3;
}

.why-choose-about__image--third {
    right: 3.9%;
    top: 0;
    width: 25%;
    z-index: 4;
}

.why-choose-about__experience {
    left: 16.7%;
    bottom: 5.9%;
    width: 52.1%;
    border-radius: 7px;
    box-shadow: 0 18px 36px 0 #001D081A;
    z-index: 3;
}

@media (max-width: 1280px) {
    .about-intro__inner {
        width: min(100% - 80px, 1480px);
        grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
        gap: 48px;
    }

    .about-intro__points {
        column-gap: 30px;
    }

    .about-intro__visual {
        width: min(100%, 620px);
    }

    .why-choose-about__inner {
        width: min(100% - 80px, 1480px);
        grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
        gap: 48px;
    }

    .why-choose-about__points {
        column-gap: 30px;
    }

    .why-choose-about__visual {
        width: min(100%, 620px);
    }
}

.about-services {
    background: #fff;
    overflow: hidden;
}

.about-services__inner {
    width: min(100% - 120px, 1480px);
    margin: 0 auto;
    padding: 72px 0 110px;
}

.about-services__eyebrow,
.creative-solutions__eyebrow {
    margin: 0 0 10px;
    color: var(--color-orange);
    font-family: var(--font-script);
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
}

.about-services__eyebrow {
    text-align: center;
}

.about-services__title {
    margin: 0 0 58px;
    color: var(--color-green);
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 66px;
    letter-spacing: 0;
    text-align: center;
}

.about-services__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px;
}

.about-service-card {
    min-height: 292px;
    padding: 32px 24px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.about-service-card:hover,
.about-service-card:focus-within {
    box-shadow: 0 20px 40px 0 #001D081A;
    transform: translateY(-2px);
}

.about-service-card__icon {
    width: 76px;
    height: 76px;
    margin: 0 0 20px;
    object-fit: contain;
}

.about-service-card__title {
    margin: 0 0 8px;
    color: #000;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0;
    text-align: center;
    transition: color 0.2s ease;
}

.about-service-card:hover .about-service-card__title,
.about-service-card:focus-within .about-service-card__title {
    color: var(--color-orange);
}

.about-service-card__text {
    max-width: 260px;
    margin: 0 0 18px;
    color: #646464;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0;
    text-align: center;
}

.about-service-card__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #646464;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none;
    transition: color 0.2s ease;
}

.about-service-card__arrow {
    width: 14px;
    height: 14px;
    display: inline-block;
    background: currentColor;
    mask: url('../images/arrow-right-hover.svg') center / contain no-repeat;
    -webkit-mask: url('../images/arrow-right-hover.svg') center / contain no-repeat;
}

.about-service-card__link:hover,
.about-service-card__link:focus {
    color: var(--color-orange);
}

.personal-approach-slider {
    background: var(--color-green);
    overflow: hidden;
}

.personal-approach-slider__inner {
    width: min(100% - 120px, 1480px);
    margin: 0 auto;
    padding: 100px 0 88px;
}

.personal-approach-slider__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 34px;
}

.personal-approach-slider__title {
    margin: 0;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 66px;
    letter-spacing: 0;
}

.personal-slider {
    position: relative;
    overflow: visible;
    touch-action: pan-y;
}

.personal-slider__track {
    --personal-slide-offset: 0px;
    display: flex;
    gap: 24px;
    transform: translateX(calc(-1 * var(--personal-slide-offset)));
    transition: transform 0.45s ease;
    will-change: transform;
}

.personal-slider__item {
    position: relative;
    width: clamp(230px, 21vw, 282px);
    height: clamp(300px, 26vw, 360px);
    flex: 0 0 clamp(230px, 21vw, 282px);
    overflow: hidden;
    border-radius: 7px;
    background: #C4C4C4;
    isolation: isolate;
}

.personal-slider__item::before,
.personal-slider__item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.personal-slider__item::before {
    top: auto;
    height: 58%;
    background: linear-gradient(0deg, #001D08 0%, #001D0800 100%);
}

.personal-slider__item::after {
    opacity: 0;
    z-index: 3;
    background: var(--color-orange);
}

.personal-slider__item:hover::after,
.personal-slider__item:focus-within::after,
.personal-slider__item:focus::after {
    opacity: 1;
}

.personal-slider__image,
.personal-slider__placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.personal-slider__image {
    z-index: 1;
    object-fit: cover;
}

.personal-slider__placeholder {
    z-index: 0;
    background: linear-gradient(180deg, #C8CEC9 0%, #001D08 100%);
}

.personal-slider__caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 4;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0;
    text-align: center;
}

.personal-slider__share {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease;
}

.personal-slider__item:hover .personal-slider__share,
.personal-slider__item:focus-within .personal-slider__share {
    opacity: 1;
}

.personal-slider__share-link {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.personal-slider__share-link:hover,
.personal-slider__share-link:focus {
    transform: translateY(-2px);
}

.personal-slider__share-link img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.personal-slider__controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.personal-slider__control {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 3px;
    background: #fff;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.personal-slider__control::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    margin: 13px auto;
    background: var(--color-green);
    mask: url('../images/arrow-right-hover.svg') center / contain no-repeat;
    -webkit-mask: url('../images/arrow-right-hover.svg') center / contain no-repeat;
}

.personal-slider__control--prev::before {
    transform: rotate(180deg);
}

.personal-slider__control--next {
    background: var(--color-orange);
}

.personal-slider__control--next::before {
    background: #fff;
}

.personal-slider__control:hover,
.personal-slider__control:focus {
    transform: translateY(-2px);
}

.creative-solutions {
    background: #fff;
    overflow: hidden;
}

.creative-solutions__inner {
    width: min(100% - 120px, 1480px);
    margin: 0 auto;
    padding: 72px 0 14px;
}

.creative-solutions__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.creative-solutions__title {
    margin: 0;
    color: var(--color-green);
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 66px;
    letter-spacing: 0;
}

.creative-slider {
    position: relative;
    height: 420px;
    margin: 0 auto 42px;
}

.creative-slider__item {
    position: absolute;
    top: 0;
    left: 50%;
    width: 230px;
    height: 390px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 7px;
    background: #C4C4C4;
    cursor: pointer;
    opacity: 1;
    transform: translateX(-50%) scale(0.94);
    transition: left 0.45s ease, width 0.45s ease, opacity 0.3s ease, transform 0.45s ease;
}

.creative-slider__item::before,
.creative-slider__item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.creative-slider__item::before {
    background: rgba(0, 0, 0, 0.8);
}

.creative-slider__item::after {
    opacity: 0;
    background: linear-gradient(180deg, rgba(255, 61, 0, 0) 0%, #FF3D00 100%);
}

.creative-slider__item.is-active {
    left: 50%;
    width: 620px;
    z-index: 5;
    cursor: default;
    transform: translateX(-50%) scale(1);
}

.creative-slider__item.is-active::before {
    opacity: 0;
}

.creative-slider__item.is-active:hover::after,
.creative-slider__item.is-active:focus::after {
    opacity: 1;
}

.creative-slider__item.is-prev-1 {
    left: calc(50% - 435px);
    z-index: 4;
}

.creative-slider__item.is-next-1 {
    left: calc(50% + 435px);
    z-index: 4;
}

.creative-slider__item.is-prev-2 {
    left: calc(50% - 675px);
    z-index: 3;
}

.creative-slider__item.is-next-2 {
    left: calc(50% + 675px);
    z-index: 3;
}

.creative-slider__item.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.creative-slider__image,
.creative-slider__placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.creative-slider__image {
    z-index: 1;
    object-fit: cover;
}

.creative-slider__placeholder {
    z-index: 0;
    background: #C4C4C4;
}

.creative-slider__caption {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 36px;
    z-index: 3;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    line-height: 46px;
    letter-spacing: 0;
    opacity: 0;
    text-align: center;
    transition: opacity 0.25s ease;
}

.creative-slider__item.is-active:hover .creative-slider__caption,
.creative-slider__item.is-active:focus .creative-slider__caption {
    opacity: 1;
}

/* Contact page */
.contact-page {
    background: #fff;
}

.contact-section {
    background: #fff;
}

.contact-section__inner {
    width: min(100% - 120px, 1080px);
    margin: 0 auto;
    padding: 136px 0 120px;
    display: grid;
    grid-template-columns: minmax(320px, 420px) minmax(520px, 1fr);
    gap: 56px;
    align-items: center;
}

.contact-details__title,
.contact-form-card__title {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    line-height: 46px;
    letter-spacing: 0;
}

.contact-details__title {
    color: var(--color-green);
}

.contact-form-card__title {
    color: #000;
}

.contact-details__text,
.contact-form-card__text {
    margin: 0;
    color: #646464;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0;
}

.contact-details__text {
    max-width: 390px;
    margin-bottom: 44px;
}

.contact-details__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 30px;
}

.contact-details__item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.contact-details__icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.contact-details__label {
    display: block;
    margin: 0 0 8px;
    color: #646464;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
}

.contact-details__value {
    display: inline-block;
    color: var(--color-green);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
}

.contact-details__value--address {
    line-height: 24px;
}

.contact-form-card {
    padding: 48px 56px 50px;
    background: #FAFAFA;
}

.contact-form-card__text {
    margin-bottom: 42px;
}

.contact-form-card__notice {
    margin: 0 0 22px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 24px;
}

.contact-form-card__notice--success {
    color: var(--color-green);
    background: #001D080D;
}

.contact-form-card__notice--error {
    color: var(--color-orange);
    background: #FF3D000D;
}

.contact-form__honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 30px;
    margin-bottom: 30px;
}

.contact-form__field {
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #001D081A;
    border-radius: 0;
    background: #fff;
    color: var(--color-green);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input {
    min-height: 54px;
    padding: 14px 20px;
}

.contact-form textarea {
    min-height: 168px;
    padding: 18px 20px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #646464;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px #FF3D001A;
}

.contact-form__field--message {
    margin-bottom: 28px;
}

.contact-form__button {
    min-width: 148px;
    border: 0;
    box-shadow: 0 8px 16px 0 #FF3D0033;
    cursor: pointer;
}

.contact-map {
    width: 100%;
    min-height: 420px;
    background: #B8BCB8;
}

.contact-map__frame {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

/* Footer */
.site-footer {
    background: #fff;
}

.site-footer__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 120px, 1480px);
    margin: 0 auto;
    padding: 96px 0 92px;
    display: grid;
    grid-template-columns: minmax(240px, 1.35fr) minmax(160px, 0.8fr) minmax(220px, 1fr) minmax(270px, 1fr);
    gap: 76px;
}

.site-footer__logo {
    margin: 0 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-green);
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.site-footer__logo .custom-logo {
    max-height: 52px;
    width: auto;
}

.site-footer__logo-mark {
    width: 21px;
    height: 22px;
    display: inline-block;
    border-left: 6px solid var(--color-green);
    border-right: 6px solid var(--color-green);
}

.site-footer__description {
    max-width: 340px;
    margin: 0 0 30px;
    color: #646464;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0;
}

.site-footer__social {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    transition: transform 0.2s ease;
}

.site-footer__social:hover,
.site-footer__social:focus {
    transform: translateY(-4px) rotate(-4deg);
}

.site-footer__social img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.site-footer__heading {
    margin: 0 0 24px;
    color: var(--color-green);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0;
}

.site-footer__column:not(.site-footer__contact) .site-footer__heading {
    padding-left: 21px;
}

.site-footer__contact .site-footer__heading {
    padding-left: 31px;
}

.site-footer__links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__links a {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #646464;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    line-height: 46px;
    letter-spacing: 0;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__links a::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background: currentColor;
    mask: url('../images/side-arrow.svg') center / contain no-repeat;
    -webkit-mask: url('../images/side-arrow.svg') center / contain no-repeat;
}

.site-footer__links a:hover,
.site-footer__links a:focus {
    color: var(--color-orange);
    transform: translateX(4px);
}

.site-footer__contact {
    color: #646464;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 0 0 18px;
}

.site-footer__contact-item img {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    flex: 0 0 20px;
    object-fit: contain;
}

.site-footer__contact-item a {
    display: block;
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.site-footer__contact-item a:hover,
.site-footer__contact-item a:focus {
    color: var(--color-orange);
}

.site-footer__bottom {
    background: var(--color-green);
}

.site-footer__bottom-inner {
    width: min(100% - 120px, 1480px);
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0;
}

.site-footer__bottom-inner p {
    margin: 0;
}

.site-footer__bottom-inner a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__bottom-inner a:hover,
.site-footer__bottom-inner a:focus {
    color: var(--color-orange);
}

@media (max-width: 1024px) {
    .site-topbar__inner {
        width: min(100% - 72px, 1480px);
    }

    .site-header__inner {
        width: min(100% - 72px, 1480px);
        gap: 24px;
    }

    .main-navigation ul {
        gap: 24px;
    }

    .home-hero__inner {
        width: min(100% - 72px, 1480px);
        min-height: auto;
        padding: 72px 0;
    }

    .page-hero__inner {
        width: min(100% - 72px, 1480px);
        min-height: 300px;
        padding: 76px 0;
    }

    .contact-section__inner {
        width: min(100% - 72px, 1480px);
        padding: 92px 0 88px;
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .contact-details {
        max-width: 640px;
    }

    .contact-form-card {
        padding: 44px 42px 46px;
    }

    .service-highlights__inner {
        width: min(100% - 72px, 1480px);
        gap: 32px;
        padding: 64px 0;
    }

    .service-card {
        gap: 16px;
    }

    .personalized-approach__inner {
        width: min(100% - 72px, 1480px);
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 72px 0;
    }

    .personalized-approach__content {
        max-width: 760px;
    }

    .personalized-approach__visual {
        width: min(100%, 660px);
        min-height: 430px;
        margin: 0 auto;
    }

    .personalized-approach__image--left {
        left: 50px;
    }

    .personalized-approach__image--right {
        left: 305px;
    }

    .personalized-approach__bag {
        right: 8px;
    }

    .personalized-approach__stain {
        left: 28px;
        bottom: -18px;
        width: 460px;
    }

    .personalized-approach__hat {
        bottom: 24px;
    }

    .service-offerings__inner {
        width: min(100% - 72px, 1480px);
        padding: 80px 0;
    }

    .service-offerings__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px;
    }

    .service-offering {
        background: #fff;
        box-shadow: 0 20px 40px 0 #001D0810;
    }

    .facts-strip__inner {
        width: min(100% - 72px, 1480px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 52px;
        padding: 64px 0;
    }

    .home-faq__inner {
        width: min(100% - 72px, 1480px);
        grid-template-columns: 1fr;
        gap: 52px;
        padding: 80px 0;
    }

    .home-faq__content {
        max-width: 720px;
    }

    .home-faq__visual {
        justify-content: flex-start;
    }

    .home-faq__shape--left {
        width: 520px;
        bottom: -185px;
    }

    .home-faq__shape--right {
        width: 150px;
        top: auto;
        right: -24px;
        bottom: 110px;
        transform: none;
    }

    .about-intro__inner {
        width: min(100% - 72px, 1480px);
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 58px;
        padding: 76px 0 84px;
    }

    .about-intro__content {
        max-width: 720px;
    }

    .about-intro__visual {
        width: min(100%, 760px);
        min-height: 560px;
        margin: 0 auto;
    }

    .about-intro__splash {
        left: 50%;
        top: 50%;
        bottom: auto;
        width: 1040px;
        transform: translate(-50%, -50%);
    }

    .about-intro__image--color {
        top: 16px;
        right: 46px;
        width: 480px;
    }

    .about-intro__image--printer {
        left: 82px;
        bottom: 104px;
        width: 390px;
    }

    .why-choose-about__inner {
        width: min(100% - 72px, 1480px);
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 58px;
        padding: 76px 0 84px;
    }

    .why-choose-about__content {
        max-width: 720px;
    }

    .why-choose-about__visual {
        width: min(100%, 690px);
        aspect-ratio: 720 / 610;
        margin: 0 auto;
    }

    .why-choose-about__stain {
        right: -2.8%;
        bottom: 4.9%;
        width: 58.4%;
    }

    .why-choose-about__image--first {
        left: 7.2%;
        top: 12.5%;
        width: 38.2%;
    }

    .why-choose-about__image--second {
        left: 42.4%;
        top: 12.1%;
        width: 42%;
    }

    .why-choose-about__image--third {
        right: 3.9%;
        top: 0;
        width: 25%;
    }

    .why-choose-about__experience {
        left: 16.7%;
        bottom: 5.9%;
        width: 52.1%;
    }

    .about-services__inner {
        width: min(100% - 72px, 1480px);
        padding-bottom: 12px;
    }

    .personal-approach-slider__inner {
        width: min(100% - 72px, 1480px);
        padding: 74px 0 76px;
    }

    .about-services__inner {
        padding: 64px 0 82px;
    }

    .about-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .about-service-card {
        box-shadow: 0 20px 40px 0 #001D0810;
    }

    .personal-slider {
        overflow: visible;
    }

    .personal-slider__item {
        width: clamp(220px, 30vw, 282px);
        flex-basis: clamp(220px, 30vw, 282px);
        height: 330px;
    }

    .creative-solutions__inner {
        width: min(100% - 72px, 1480px);
        padding-bottom: 12px;
    }

    .creative-slider {
        height: 360px;
        margin-bottom: 34px;
    }

    .creative-slider__item {
        width: 180px;
        height: 330px;
    }

    .creative-slider__item.is-active {
        width: 500px;
    }

    .creative-slider__item.is-prev-1 {
        left: calc(50% - 356px);
    }

    .creative-slider__item.is-next-1 {
        left: calc(50% + 356px);
    }

    .creative-slider__item.is-prev-2 {
        left: calc(50% - 552px);
    }

    .creative-slider__item.is-next-2 {
        left: calc(50% + 552px);
    }

    .site-footer__inner {
        width: min(100% - 72px, 1480px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 64px;
        padding: 74px 0;
    }

    .site-footer__bottom-inner {
        width: min(100% - 72px, 1480px);
    }

    .home-hero__content {
        max-width: 760px;
    }
}

@media (max-width: 767px) {
    .site-topbar__inner {
        width: min(100% - 40px, 1480px);
        min-height: auto;
        padding: 12px 0;
        flex-wrap: wrap;
        gap: 10px 22px;
    }

    .site-topbar__language-menu {
        top: calc(100% + 8px);
    }

    .site-header__inner {
        width: min(100% - 40px, 1480px);
        min-height: auto;
        padding: 16px 0;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 14px;
    }

    .site-branding {
        display: flex;
        justify-content: flex-start;
        flex: 1 1 auto;
    }

    .menu-toggle {
        width: 48px;
        height: 48px;
        padding: 0;
        display: inline-flex;
        flex: 0 0 48px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        background: transparent;
        color: #fff;
        cursor: pointer;
    }

    .site-header--subpage .menu-toggle {
        border-color: rgba(0, 29, 8, 0.2);
        color: var(--color-green);
    }

    .menu-toggle__line {
        width: 22px;
        height: 2px;
        display: block;
        background: currentColor;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .site-header.is-menu-open .menu-toggle__line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .site-header.is-menu-open .menu-toggle__line:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-menu-open .menu-toggle__line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .main-navigation,
    .header-order-button {
        display: none;
        flex-basis: 100%;
    }

    .site-header.is-menu-open .main-navigation {
        display: block;
    }

    .site-header.is-menu-open .header-order-button {
        display: inline-flex;
    }

    .main-navigation ul {
        padding: 12px 0 4px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
    }

    .main-navigation a {
        display: block;
        padding: 11px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        line-height: 24px;
    }

    .site-header--subpage .main-navigation a {
        border-top-color: rgba(0, 29, 8, 0.12);
    }

    .header-order-button {
        width: 100%;
        margin-top: 4px;
    }

    .home-hero__inner {
        width: min(100% - 40px, 1480px);
        padding: 56px 0;
    }

    .home-hero {
        background-position: center;
    }

    .page-hero {
        background-position: center;
    }

    .page-hero__inner {
        width: min(100% - 40px, 1480px);
        min-height: 240px;
        padding: 54px 0;
    }

    .page-hero__title {
        margin-bottom: 14px;
        font-size: clamp(40px, 13vw, 52px);
        line-height: 1.16;
    }

    .page-hero__breadcrumb {
        font-size: 16px;
        line-height: 24px;
    }

    .contact-section__inner {
        width: min(100% - 40px, 1480px);
        padding: 58px 0 64px;
        gap: 42px;
    }

    .contact-details__title,
    .contact-form-card__title {
        margin-bottom: 14px;
        font-size: clamp(30px, 9vw, 36px);
        line-height: 1.2;
    }

    .contact-details__text,
    .contact-form-card__text {
        font-size: 16px;
        line-height: 26px;
    }

    .contact-details__text {
        margin-bottom: 34px;
    }

    .contact-details__list {
        gap: 24px;
    }

    .contact-details__item {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 14px;
    }

    .contact-details__icon {
        width: 52px;
        height: 52px;
    }

    .contact-form-card {
        padding: 32px 20px 34px;
    }

    .contact-form-card__text {
        margin-bottom: 28px;
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 18px;
    }

    .contact-form input {
        min-height: 50px;
        padding: 12px 16px;
    }

    .contact-form textarea {
        min-height: 150px;
        padding: 14px 16px;
    }

    .contact-form__button {
        width: auto;
    }

    .contact-map,
    .contact-map__frame {
        min-height: 360px;
    }

    .service-highlights__inner {
        width: min(100% - 40px, 1480px);
        flex-direction: column;
        gap: 36px;
        padding: 48px 0;
    }

    .service-card {
        width: 100%;
    }

    .service-card__content {
        max-width: none;
    }

    .personalized-approach__inner {
        width: min(100% - 40px, 1480px);
        gap: 42px;
        padding: 56px 0;
    }

    .personalized-approach__title {
        margin-bottom: 20px;
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.22;
    }

    .personalized-approach__text {
        margin-bottom: 28px;
        font-size: 16px;
        line-height: 26px;
    }

    .personalized-approach__points {
        grid-template-columns: 1fr;
        row-gap: 12px;
        margin-bottom: 30px;
    }

    .personalized-approach__points li {
        white-space: normal;
    }

    .personalized-approach__visual {
        min-height: clamp(280px, 70vw, 420px);
        width: min(100%, 520px);
    }

    .personalized-approach__stain {
        left: 6%;
        bottom: -1%;
        width: 74%;
    }

    .personalized-approach__image--left {
        left: 7%;
        width: 36%;
    }

    .personalized-approach__image--right {
        left: 48%;
        width: 42%;
    }

    .personalized-approach__experience {
        left: 17%;
        bottom: 8%;
        width: 48%;
    }

    .personalized-approach__hat {
        left: 0;
        bottom: 9%;
        width: 14%;
    }

    .personalized-approach__bag {
        right: 0;
        top: 24%;
        width: 13%;
    }

    .service-offerings__inner {
        width: min(100% - 40px, 1480px);
        padding: 58px 0;
    }

    .service-offerings__eyebrow {
        font-size: 22px;
        line-height: 28px;
    }

    .service-offerings__title {
        margin-bottom: 36px;
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.22;
    }

    .service-offerings__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-offering {
        min-height: auto;
        padding: 34px 24px 32px;
    }

    .service-offering__icon {
        margin-bottom: 20px;
    }

    .service-offering__title {
        font-size: 22px;
        line-height: 30px;
    }

    .facts-strip__inner {
        width: min(100% - 40px, 1480px);
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 52px 0;
    }

    .facts-strip__icon {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
    }

    .facts-strip__number {
        margin-bottom: 10px;
        font-size: clamp(44px, 12vw, 56px);
        line-height: 1;
    }

    .facts-strip__label {
        font-size: 18px;
        line-height: 24px;
    }

    .home-faq__inner {
        width: min(100% - 40px, 1480px);
        gap: 38px;
        padding: 58px 0;
    }

    .home-faq__eyebrow {
        font-size: 22px;
        line-height: 28px;
    }

    .home-faq__title {
        margin-bottom: 26px;
        font-size: clamp(36px, 11vw, 44px);
        line-height: 1.2;
    }

    .home-faq__list {
        gap: 14px;
    }

    .home-faq__trigger {
        min-height: 64px;
        padding: 12px 10px 12px 18px;
        font-size: 17px;
        line-height: 25px;
    }

    .home-faq__toggle {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .home-faq__panel p {
        margin-top: 14px;
        padding: 0 18px;
        font-size: 15px;
        line-height: 24px;
    }

    .home-faq__visual {
        justify-content: center;
    }

    .home-faq__shape--left {
        left: -130px;
        bottom: -125px;
        width: 380px;
    }

    .home-faq__shape--right {
        display: none;
    }

    .about-intro__inner {
        width: min(100% - 40px, 1480px);
        gap: 42px;
        padding: 58px 0 64px;
    }

    .about-intro__eyebrow {
        font-size: 22px;
        line-height: 28px;
    }

    .about-intro__title {
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.22;
    }

    .about-intro__text {
        font-size: 16px;
        line-height: 26px;
    }

    .about-intro__points {
        margin-bottom: 30px;
    }

    .about-intro__points li {
        align-items: flex-start;
        line-height: 28px;
    }

    .about-intro__check {
        margin-top: 8px;
    }

    .about-intro__button {
        width: auto;
    }

    .about-intro__visual {
        width: min(100%, 520px);
        min-height: clamp(300px, 86vw, 430px);
        margin: 0 auto;
    }

    .about-intro__splash {
        left: 50%;
        top: 50%;
        bottom: auto;
        width: 188%;
        transform: translate(-50%, -50%);
    }

    .about-intro__image--color {
        top: 0;
        right: 2%;
        width: 72%;
    }

    .about-intro__image--printer {
        left: 6%;
        bottom: 13%;
        width: 60%;
    }

    .why-choose-about__inner {
        width: min(100% - 40px, 1480px);
        gap: 42px;
        padding: 58px 0 64px;
    }

    .why-choose-about__eyebrow {
        font-size: 22px;
        line-height: 28px;
    }

    .why-choose-about__title {
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.22;
    }

    .why-choose-about__text {
        font-size: 16px;
        line-height: 26px;
    }

    .why-choose-about__points {
        margin-bottom: 30px;
        grid-template-columns: 1fr;
        row-gap: 12px;
    }

    .why-choose-about__points li {
        align-items: flex-start;
        line-height: 28px;
        white-space: normal;
    }

    .why-choose-about__points img {
        margin-top: 4px;
    }

    .why-choose-about__button {
        width: auto;
    }

    .why-choose-about__visual {
        width: min(100%, 520px);
        min-height: clamp(330px, 94vw, 500px);
        margin: 0 auto;
    }

    .why-choose-about__stain {
        right: -5%;
        bottom: 8%;
        width: 60%;
    }

    .why-choose-about__image--first {
        left: 0;
        top: 14%;
        width: 45%;
    }

    .why-choose-about__image--second {
        left: 38%;
        top: 14%;
        width: 50%;
    }

    .why-choose-about__image--third {
        right: 0;
        top: 0;
        width: 30%;
    }

    .why-choose-about__experience {
        left: 16%;
        bottom: 4%;
        width: 58%;
    }

    .why-choose-about__visual img {
        max-width: none;
    }

    .about-services__inner,
    .personal-approach-slider__inner,
    .creative-solutions__inner {
        width: min(100% - 40px, 1480px);
    }

    .about-services__inner {
        padding: 48px 0 62px;
    }

    .about-services__eyebrow,
    .creative-solutions__eyebrow {
        font-size: 22px;
        line-height: 28px;
    }

    .about-services__title,
    .personal-approach-slider__title,
    .creative-solutions__title {
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.22;
    }

    .about-services__title {
        margin-bottom: 34px;
    }

    .about-services__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .about-service-card {
        min-height: auto;
        padding: 30px 22px;
    }

    .personal-approach-slider__inner {
        padding: 58px 0 64px;
    }

    .personal-approach-slider__header {
        align-items: center;
        gap: 18px;
        margin-bottom: 28px;
    }

    .personal-approach-slider__title {
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.22;
    }

    .personal-slider__item {
        width: min(76vw, 282px);
        flex-basis: min(76vw, 282px);
        height: clamp(260px, 88vw, 340px);
    }

    .personal-slider__track {
        gap: 18px;
    }

    .personal-slider__caption {
        left: 18px;
        right: 18px;
        bottom: 18px;
        font-size: 16px;
        line-height: 24px;
    }

    .personal-slider__control {
        width: 36px;
        height: 36px;
    }

    .personal-slider__control::before {
        width: 12px;
        height: 12px;
        margin: 12px auto;
    }

    .creative-solutions__inner {
        padding-bottom: 10px;
    }

    .creative-solutions__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .creative-slider {
        height: clamp(270px, 78vw, 360px);
        margin-bottom: 26px;
    }

    .creative-slider__item {
        width: 44%;
        height: clamp(245px, 70vw, 330px);
    }

    .creative-slider__item.is-active {
        width: 82%;
    }

    .creative-slider__item.is-prev-1 {
        left: 0;
    }

    .creative-slider__item.is-next-1 {
        left: 100%;
    }

    .creative-slider__item.is-prev-2,
    .creative-slider__item.is-next-2 {
        opacity: 0;
        pointer-events: none;
    }

    .creative-slider__caption {
        left: 22px;
        right: 22px;
        bottom: 24px;
        font-size: clamp(24px, 8vw, 32px);
        line-height: 1.24;
    }

    .site-footer__inner {
        width: min(100% - 40px, 1480px);
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 56px 0;
    }

    .site-footer__description {
        max-width: none;
    }

    .site-footer__heading {
        margin-bottom: 14px;
    }

    .site-footer__links a {
        line-height: 40px;
    }

    .site-footer__bottom-inner {
        width: min(100% - 40px, 1480px);
        min-height: auto;
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .home-hero__title {
        margin-bottom: 24px;
        font-size: clamp(38px, 12vw, 52px);
        line-height: 1.14;
    }

    .home-hero__text {
        font-size: 18px;
        line-height: 28px;
    }

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