@font-face {
    font-family: 'BalletCustom';
    src:
        url('../fonts/ballet.ttf') format('truetype'),
        url('../fonts/Ballet.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'CormorantGaramondCustom';
    src:
        url('../fonts/cormorantgaramond.ttf') format('truetype'),
        url('../fonts/CormorantGaramond.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

:root {
    --color-beige: #fdf8ec;
    --color-purple: #898da8;
    --color-light-purple: #a3b9dc;
    --color-green: #83996f;
    --color-dark-green: #445339;

    --color-beige-rgb: 253, 248, 236;
    --color-purple-rgb: 137, 141, 168;
    --color-light-purple-rgb: 163, 185, 220;
    --color-green-rgb: 131, 153, 111;
    --color-dark-green-rgb: 68, 83, 57;

    --font-heading: 'BalletCustom', cursive;
    --font-body: 'CormorantGaramondCustom', serif;

    --nav-height: 82px;
    --nav-link-width: 200px;
    --nav-link-height: 52px;
    --nav-shadow: 0 2px 7px rgba(var(--color-dark-green-rgb), 0.05);
    --dropdown-shadow: 0 14px 28px rgba(var(--color-dark-green-rgb), 0.08);
    --section-max-width: 1320px;
    --content-gutter: clamp(20px, 3vw, 40px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-width: 320px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    padding-top: var(--nav-height);
    font-family: var(--font-body);
    background: var(--color-beige);
    color: var(--color-dark-green);
}

body,
input,
textarea,
select,
button {
    font-family: var(--font-body);
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin-top: 0;
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    font-weight: 400;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 16px;
    font-family: var(--font-body);
}

h3,
h4,
h5,
h6,
p,
li,
a,
button {
    font-family: var(--font-body);
}

section,
header,
footer,
main {
    max-width: 100%;
}

.site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    background: var(--color-beige);
    box-shadow: var(--nav-shadow);
    z-index: 1000;
}

.nav-shell {
    position: relative;
    max-width: 1500px;
    min-height: var(--nav-height);
    margin: 0 auto;
    padding: 0 var(--content-gutter);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-mobile-brand {
    display: none;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.nav-mobile-brand__image {
    width: auto;
    height: 42px;
    object-fit: contain;
}

.nav-menu-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: var(--nav-height);
}

.nav-link {
    width: var(--nav-link-width);
    height: var(--nav-link-height);
    padding: 0 20px;
    border: 0;
    border-radius: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--color-dark-green);
    text-decoration: none;
    font-size: clamp(1.15rem, 1.25vw, 1.32rem);
    line-height: 1;
    cursor: pointer;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.nav-link:focus-visible,
.nav-item.nav-item--open > .nav-link--trigger {
    background: var(--color-purple);
    color: var(--color-beige);
}

.nav-link:focus-visible {
    outline: none;
}

@media (hover: hover) and (pointer: fine) {
    .nav-link:hover,
    .nav-item:hover > .nav-link--trigger {
        background: var(--color-purple);
        color: var(--color-beige);
    }
}

.nav-link--trigger {
    appearance: none;
}

.nav-arrow {
    display: inline-block;
    font-size: 0.9rem;
    line-height: 1;
    transition: transform 0.25s ease;
}

.nav-item.nav-item--open > .nav-link--trigger .nav-arrow {
    transform: rotate(180deg);
}

@media (hover: hover) and (pointer: fine) {
    .nav-item:hover > .nav-link--trigger .nav-arrow {
        transform: rotate(180deg);
    }
}

.nav-dropdown {
    position: absolute;
    top: calc(50% + (var(--nav-link-height) / 2));
    left: 0;
    width: var(--nav-link-width);
    list-style: none;
    margin: 0;
    padding: 12px 0 14px;
    background: var(--color-purple);
    border-radius: 0 0 12px 12px;
    box-shadow: var(--dropdown-shadow);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown,
.nav-item.nav-item--open > .nav-dropdown {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown li {
    margin: 0;
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--color-beige);
    font-size: 1.12rem;
    line-height: 1.1;
    transition: color 0.2s ease;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
    color: var(--color-light-purple);
    outline: none;
}

.nav-burger {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    width: 52px;
    height: 52px;
    margin: auto 0 auto auto;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-burger span {
    width: 26px;
    height: 2px;
    background: var(--color-dark-green);
    transition:
        transform 0.25s ease,
        opacity 0.25s ease,
        background-color 0.25s ease;
}

.site-nav.nav-open .nav-burger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.site-nav.nav-open .nav-burger span:nth-child(2) {
    opacity: 0;
}

.site-nav.nav-open .nav-burger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.site-main {
    display: block;
}

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

.section {
    padding: clamp(80px, 10vw, 120px) 0;
}

.section--home {
    position: relative;
    height: calc(100svh - var(--nav-height));
    min-height: calc(100svh - var(--nav-height));
    padding: clamp(28px, 5vw, 56px) 0;
    display: flex;
    align-items: center;
    background-color: var(--color-beige);
    background-image:
        url('../img/home_top_ornament.png'),
        url('../img/home_bot_ornament.png'),
        url('../img/home_bot_ornament.png');
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: top center, bottom left -49vh, bottom right -49vh;
    background-size: 50vh, 98vh, 98vh;
    overflow: hidden;
    isolation: isolate;
}

.section--home > *:not(.home-left-flower):not(.home-right-flower) {
    position: relative;
    z-index: 2;
}

.home-shell {
    height: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-content {
    width: min(100%, 1040px);
    height: 100%;
    min-height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: stretch;
    text-align: center;
}

.home-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.2vw, 26px);
}

.home-logo {
    width: min(100%, clamp(380px, 56vw, 900px));
    max-height: 60vh;
    object-fit: contain;
}

.home-logo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(36px, 6vw, 72px);
    border: 1px solid rgba(var(--color-dark-green-rgb), 0.22);
    color: var(--color-dark-green);
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(var(--color-purple-rgb), 0.05);
}

.home-subtitle {
    max-width: 860px;
    margin: 0;
    color: var(--color-dark-green);
    font-size: clamp(1.8rem, 3vw, 2.9rem);
    font-weight: 400;
    line-height: 1.2;
}

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(210px, 22vw, 300px);
    aspect-ratio: 3 / 1;
    margin-top: 0;
    margin-bottom: clamp(40px, 8vh, 84px);
    justify-self: center;
    align-self: center;
    padding: 0 22px;
    border: 0;
    background-color: transparent;
    background-image: url('../img/btn.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: var(--color-dark-green);
    text-decoration: none;
    text-align: center;
    font-size: clamp(1.22rem, 1.7vw, 1.55rem);
    font-weight: 500;
    line-height: 1;
    transition: transform 0.25s ease;
}

.home-button:hover,
.home-button:focus-visible {
    transform: scale(1.04);
    outline: none;
}

.section--alt {
    background: rgba(var(--color-green-rgb), 0.08);
}

.section--quote {
    background-image: url('../img/quote_bg.png');
    background-repeat: repeat;
    background-position: top left;
    background-size: auto;
    padding: clamp(120px, 12vw, 180px) 0;
}

.quote-shell {
    width: min(100% - (var(--content-gutter) * 2), var(--section-max-width));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-card {
    width: min(100%, 1120px);
    background-image: url('../img/quote_top_ornament.png'), url('../img/quote_bottom_ornament.png'), url('../img/quote_card_bg.png');
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center 34px, center calc(100% - 58px), center center;
    background-size: auto auto, auto auto, 100% 100%;
    padding: clamp(74px, 8.5vw, 116px) clamp(26px, 5vw, 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section--quote .quote-text {
    margin: 0;
    color: var(--color-dark-green);
    font-family: var(--font-body);
    font-size: clamp(1.46rem, 2.2vw, 2.14rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.section-shell {
    width: min(100% - (var(--content-gutter) * 2), var(--section-max-width));
    margin: 0 auto;
}

.section p,
.site-footer p {
    font-size: clamp(1.15rem, 1.5vw, 1.35rem);
    line-height: 1.5;
}

.section--popular {
    position: relative;
    z-index: 3;
    background-color: var(--color-purple);
    background-image:
        url('../img/popular_left_flower.png'),
        url('../img/popular_right_flower.png'),
        url('../img/popular_bottom_ornament.png');
    background-repeat: no-repeat, no-repeat, repeat-x;
    background-position: top -50px left -500px, top right -500px, bottom center;
    background-size: min(50vw, 1000px), min(50vw, 1000px), min(20vw, 400px);
    overflow: hidden;
}

.popular-shell {
    width: 100%;
}

.popular-header {
    width: 100%;
    margin: 0 0 clamp(28px, 2.8vw, 42px);
    padding: 0 clamp(22px, 2.2vw, 34px);
    text-align: center;
}

.section--popular .popular-title {
    margin-bottom: 0;
    color: var(--color-beige);
    font-size: clamp(4.6rem, 6.9vw, 8rem);
    line-height: 0.96;
}

.popular-subtitle-wrap {
    width: 100vw;
    margin: 0 0 clamp(42px, 4vw, 58px);
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 0 clamp(22px, 2.2vw, 34px);
    display: flex;
    justify-content: center;
}

.section--popular .popular-subtitle {
    width: 100%;
    max-width: none;
    margin: 0;
    color: var(--color-beige);
    font-size: clamp(1.38rem, 1.9vw, 2rem);
    line-height: 1.2;
    text-align: center;
}

.popular-carousel {
    --popular-gap: clamp(42px, 3.2vw, 62px);
    position: relative;
    width: 100%;
    padding: 0 clamp(22px, 2.2vw, 34px) clamp(26px, 2.8vw, 42px);
}

.popular-carousel__viewport {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    cursor: pointer;
    touch-action: pan-y;
    user-select: none;
}

.popular-carousel.is-dragging .popular-carousel__viewport {
    cursor: pointer;
}

.popular-carousel__track {
    display: flex;
    align-items: stretch;
    gap: var(--popular-gap);
    will-change: transform;
}

.popular-card {
    flex: 0 0 calc((100% - (var(--popular-gap) * 4) - clamp(18px, 1.4vw, 28px)) / 5);
}

.popular-card__figure {
    position: relative;
    margin: 0;
    aspect-ratio: 0.72 / 1;
    overflow: hidden;
    border-radius: 0;
    background: rgba(var(--color-beige-rgb), 0.94);
    box-shadow: 0 18px 38px rgba(var(--color-dark-green-rgb), 0.26);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.popular-card__figure::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(var(--color-beige-rgb), 0.92);
    opacity: 0;
    transition: opacity 0.32s ease;
}

.popular-card__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.popular-card__caption {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    color: var(--color-dark-green);
    text-align: center;
    font-size: clamp(1.15rem, 1.35vw, 1.55rem);
    font-weight: 600;
    line-height: 1.2;
    opacity: 0;
    transition: opacity 0.32s ease;
}

.popular-card__figure:hover::after,
.popular-card__figure:hover .popular-card__caption,
.popular-card__figure:focus-within::after,
.popular-card__figure:focus-within .popular-card__caption {
    opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
    .popular-card__figure:hover,
    .popular-card__figure:focus-within,
    .services-card__figure:hover,
    .services-card__figure:focus-within {
        transform: scale(1.035);
    }
}

.popular-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: clamp(48px, 3.3vw, 58px);
    height: clamp(48px, 3.3vw, 58px);
    margin: 0;
    padding: 0;
    border: 1px solid rgba(var(--color-beige-rgb), 0.18);
    border-radius: 999px;
    background: rgba(var(--color-dark-green-rgb), 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-beige);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.popular-arrow:hover,
.popular-arrow:focus-visible {
    background: rgba(var(--color-dark-green-rgb), 0.26);
    border-color: rgba(var(--color-beige-rgb), 0.3);
    outline: none;
}

.popular-arrow span {
    font-size: clamp(1.26rem, 1.45vw, 1.55rem);
    line-height: 1;
}

.popular-arrow--prev {
    left: clamp(4px, 0.9vw, 12px);
}

.popular-arrow--next {
    right: clamp(4px, 0.9vw, 12px);
}

.site-footer {
    padding: 18px 0 28px;
    background: var(--color-beige);
    color: var(--color-dark-green);
    text-align: center;
}

.site-footer__text {
    margin: 0;
    color: var(--color-dark-green);
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.1vw, 1.12rem);
    font-weight: 500;
    line-height: 1.4;
}

.section--services {
    background: var(--color-beige);
    color: var(--color-dark-green);
    overflow: hidden;
    padding: clamp(88px, 8vw, 118px) 0 clamp(61px, 7vw, 240px);
    background-image:
        url('../img/home_top_ornament.png'),
        url('../img/home_top_ornament.png'),
        url('../img/home_bot_ornament.png');
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: top left -10vw, top right -10vw, bottom 15px center;
    background-size: 35vw, 35vw, 20vw;
}

.services-shell {
    width: 100%;
}

.services-header {
    width: 100%;
    margin: 0 0 clamp(28px, 2.8vw, 42px);
    padding: 0 clamp(22px, 2.2vw, 34px);
    text-align: center;
}

.section--services .services-title {
    margin-bottom: 0;
    color: var(--color-dark-green);
    font-size: clamp(4.6rem, 6.9vw, 8rem);
    line-height: 0.96;
}

.services-subtitle-wrap {
    width: 100vw;
    margin: 0 0 clamp(42px, 4vw, 58px);
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 0 clamp(22px, 2.2vw, 34px);
    display: flex;
    justify-content: center;
}

.section--services .services-subtitle {
    width: 100%;
    margin: 0;
    color: var(--color-dark-green);
    font-size: clamp(1.38rem, 1.9vw, 2rem);
    line-height: 1.2;
    text-align: center;
}

.services-carousel {
    --services-gap: clamp(30px, 2.4vw, 44px);
    position: relative;
    width: 100%;
    padding: 0 clamp(22px, 2.2vw, 34px);
}

.services-carousel__viewport {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: clamp(24px, 2.2vw, 34px);
    cursor: pointer;
    touch-action: pan-y;
    user-select: none;
}

.services-carousel.is-dragging .services-carousel__viewport {
    cursor: pointer;
}

.services-carousel__track {
    display: flex;
    align-items: stretch;
    gap: var(--services-gap);
    will-change: transform;
}

.services-card {
    flex: 0 0 calc((100% - (var(--services-gap) * 4) - clamp(8px, 0.7vw, 14px)) / 5);
}

.services-card__figure {
    position: relative;
    margin: 0;
    aspect-ratio: 0.72 / 1;
    overflow: hidden;
    border-radius: 50%;
    background: rgba(var(--color-beige-rgb), 0.94);
    box-shadow: 0 8px 18px rgba(var(--color-dark-green-rgb), 0.14);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.services-card__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.services-card__button-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 1.2vw, 18px);
}

.services-card__button {
    min-width: clamp(184px, 13.6vw, 246px);
    padding: clamp(20px, 1.7vw, 28px) clamp(30px, 2.4vw, 42px);
    border: none;
    border-radius: 0;
    background-color: transparent;
    background-image: url('../img/services_btn.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: var(--color-dark-green);
    font-family: var(--font-body);
    font-size: clamp(1.22rem, 1.34vw, 1.46rem);
    font-weight: 600;
    line-height: 1;
    box-shadow: none;
    pointer-events: none;
}

.services-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: clamp(48px, 3.3vw, 58px);
    height: clamp(48px, 3.3vw, 58px);
    margin: 0;
    padding: 0;
    border: 1px solid rgba(var(--color-dark-green-rgb), 0.16);
    border-radius: 999px;
    background: rgba(var(--color-beige-rgb), 0.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-dark-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.services-arrow:hover,
.services-arrow:focus-visible {
    background: rgba(var(--color-beige-rgb), 0.62);
    border-color: rgba(var(--color-dark-green-rgb), 0.28);
    outline: none;
}

.services-arrow span {
    font-size: clamp(1.26rem, 1.45vw, 1.55rem);
    line-height: 1;
}

.services-arrow--prev {
    left: clamp(4px, 0.9vw, 12px);
}

.services-arrow--next {
    right: clamp(4px, 0.9vw, 12px);
}

.section--process {
    position: relative;
    isolation: isolate;
    background-color: var(--color-green);
    color: var(--color-beige);
    overflow: hidden;
    padding: clamp(88px, 8vw, 118px) 0 clamp(110px, 11vw, 170px);
}

.section--process > *:not(.process-left-flower):not(.process-right-flower) {
    position: relative;
    z-index: 2;
}

.process-left-flower,
.process-right-flower {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
    animation: processBranchSway 10s ease-in-out infinite;
    transform-origin: center top;
}

.process-left-flower img,
.process-right-flower img {
    display: block;
    width: 100%;
    height: auto;
}

.process-left-flower {
    top: 1.2vw;
    left: -9vw;
    width: min(55vw, 980px);
}

.process-right-flower {
    top: -5vw;
    right: -14vw;
    width: min(46vw, 900px);
    animation-delay: -2.5s;
}

@keyframes processBranchSway {
    0% { transform: rotate(-1deg); }
    50% { transform: rotate(1deg); }
    100% { transform: rotate(-1deg); }
}

.process-shell {
    width: 100%;
}

.process-header {
    width: 100%;
    margin: 0 0 clamp(28px, 2.8vw, 42px);
    padding: 0 clamp(22px, 2.2vw, 34px);
    text-align: center;
}

.section--process .process-title {
    margin-bottom: 0;
    color: var(--color-beige);
    font-size: clamp(4.6rem, 6.9vw, 8rem);
    line-height: 0.96;
}

.process-subtitle-wrap {
    width: 100vw;
    margin: 0 0 clamp(42px, 4vw, 58px);
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 0 clamp(22px, 2.2vw, 34px);
    display: flex;
    justify-content: center;
}

.section--process .process-subtitle {
    position: relative;
    width: 100%;
    margin: 0;
    color: var(--color-beige);
    font-size: clamp(1.38rem, 1.9vw, 2rem);
    line-height: 1.2;
    text-align: center;
    top: -80px;
    left: 100px;
}

.process-widget {
    width: min(100% - (var(--content-gutter) * 2), 1360px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(150px, 285px) 1px minmax(0, 1fr);
    column-gap: clamp(24px, 2.6vw, 34px);
    align-items: stretch;
    min-height: clamp(270px, 32vw, 410px);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.4vw, 20px);
    padding: 0;
    margin-top: 90px;
    margin-left: 0;
}

.process-step {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-dark-green);
    text-align: left;
    font-family: var(--font-body);
    font-size: clamp(1.42rem, 1.9vw, 2.16rem);
    font-weight: 700;
    line-height: 1.08;
    cursor: pointer;
    transition: color 0.22s ease, opacity 0.22s ease;
}

.process-step:hover,
.process-step:focus-visible {
    color: var(--color-beige);
    outline: none;
}

.process-step.is-active {
    color: var(--color-beige);
    font-weight: 700;
}

.process-divider {
    position: relative;
    left: -0.5vw;
    width: 1px;
    height: 100%;
    background: rgba(var(--color-dark-green-rgb), 0.65);
}

.process-content {
    min-width: 0;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--color-dark-green);
    padding-top: clamp(2px, 0.3vw, 6px);
}

.process-content__title,
.section--process .process-content__description {
    transition: opacity 0.2s ease, transform 0.2s ease;
    will-change: opacity, transform;
}

.process-content.is-transitioning .process-content__title,
.process-content.is-transitioning .process-content__description {
    opacity: 0;
    transform: translateY(10px);
}

.process-content__title {
    margin: 0 0 clamp(20px, 2.2vw, 30px);
    color: var(--color-dark-green);
    font-size: clamp(1.82rem, 2.45vw, 2.82rem);
    font-weight: 600;
    line-height: 1.08;
}

.section--process .process-content__description {
    margin: 0;
    color: var(--color-dark-green);
    max-width: none;
    font-size: clamp(1.38rem, 1.82vw, 2.04rem);
    line-height: 1.42;
}

.process-next-link {
    margin-top: auto;
    padding-top: clamp(34px, 4vw, 58px);
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-dark-green);
    font-size: clamp(1.22rem, 1.26vw, 1.42rem);
    font-weight: 600;
    line-height: 1;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 7px;
    transition: color 0.22s ease, gap 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
    .process-next-link:hover {
        color: var(--color-beige);
        gap: 16px;
    }
}

.process-next-link:focus-visible {
    color: var(--color-dark-green);
    gap: 12px;
    outline: none;
}

.process-next-link__arrow {
    font-size: 1.05em;
    line-height: 1;
}

.section--faq {
    background-color: var(--color-purple);
    background-image: url('../img/pattern_vertical.png');
    background-repeat: repeat-x;
    background-position: bottom center;
    background-size: min(25vw, 250px);
    overflow: hidden;
    padding: clamp(88px, 8vw, 118px) 0 clamp(50px, 5vw, 170px);
}

.faq-shell {
    width: 100%;
}

.faq-header {
    width: 100%;
    margin: 0 0 clamp(42px, 4vw, 58px);
    padding: 0 clamp(22px, 2.2vw, 34px);
    text-align: center;
}

.section--faq .faq-title {
    margin-bottom: 0;
    color: var(--color-beige);
    font-size: clamp(4.6rem, 6.9vw, 8rem);
    line-height: 0.96;
}

.faq-card {
    position: relative;
    width: min(100% - (var(--content-gutter) * 2), 1200px);
    margin: 0 auto;
    background: transparent;
    background-image: url('../img/faq_card_bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    aspect-ratio: 3 / 1;
    display: grid;
    grid-template-columns: clamp(68px, 7vw, 100px) minmax(0, 1fr) clamp(68px, 7vw, 100px);
    align-items: center;
    column-gap: clamp(22px, 2.8vw, 40px);
    padding: clamp(34px, 4vw, 52px) clamp(26px, 3vw, 36px);
    touch-action: pan-y;
    user-select: none;
}

.faq-card__content {
    min-width: 0;
    min-height: 0;
    text-align: center;
    color: var(--color-dark-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    justify-self: stretch;
    padding: 0 clamp(10px, 1vw, 18px);
}

.faq-card__content.is-transitioning {
    opacity: 0;
    transform: translateY(10px);
}

.faq-card__title,
.section--faq .faq-card__description,
.faq-card__content {
    transition:
        opacity 0.22s ease,
        transform 0.22s ease;
}

.faq-card__title {
    margin: 0 0 clamp(14px, 1.5vw, 18px);
    color: var(--color-dark-green);
    font-size: clamp(1.72rem, 2.3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.12;
}

.section--faq .faq-card__description {
    margin: 0;
    color: var(--color-dark-green);
    font-size: clamp(1.2rem, 1.56vw, 1.68rem);
    line-height: 1.46;
    max-width: none;
}

.faq-arrow {
    width: clamp(46px, 5vw, 58px);
    height: clamp(46px, 5vw, 58px);
    padding: 0;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    appearance: none;
    transition: transform 0.22s ease;
    justify-self: center;
    align-self: center;
}

.faq-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
    .faq-arrow:hover img,
    .faq-arrow:focus-visible img {
        transform: scale(1.08);
    }
}

.faq-arrow:focus-visible {
    outline: none;
}

.faq-arrow:focus-visible img {
    transform: scale(1.08);
}

.section--contacts {
    background: var(--color-beige);
    color: var(--color-dark-green);
    padding: clamp(56px, 6vw, 84px) 0 clamp(64px, 6.6vw, 94px);
}

.contacts-shell {
    width: min(100% - (var(--content-gutter) * 2), 1380px);
    margin: 0 auto;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 2vw, 34px);
}

.contact-card {
    min-height: clamp(146px, 13vw, 176px);
    padding: clamp(22px, 2.2vw, 28px);
    border: 1px solid rgba(var(--color-dark-green-rgb), 0.12);
    border-radius: 28px;
    background: transparent;
    text-decoration: none;
    color: var(--color-dark-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 1.4vw, 18px);
    text-align: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.contact-card__icon {
    width: clamp(52px, 3.8vw, 64px);
    height: clamp(52px, 3.8vw, 64px);
    border: 1px solid rgba(var(--color-dark-green-rgb), 0.14);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.18rem, 1.35vw, 1.5rem);
    line-height: 1;
    color: var(--color-dark-green);
}

.contact-card__text {
    display: inline-block;
    color: var(--color-dark-green);
    font-size: clamp(1.14rem, 1.28vw, 1.34rem);
    font-weight: 400;
    line-height: 1.3;
}

@media (hover: hover) and (pointer: fine) {
    .contact-card:hover,
    .contact-card:focus-visible {
        transform: translateY(-8px);
        box-shadow: 0 18px 30px rgba(var(--color-dark-green-rgb), 0.12);
        border-color: rgba(var(--color-dark-green-rgb), 0.18);
        outline: none;
    }
}

.contact-card:focus-visible {
    outline: none;
}

/* Home animated flowers */
.home-left-flower,
.home-right-flower {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
    animation: homeBranchSway 7s ease-in-out infinite;
    transform-origin: center top;
}

.home-left-flower img,
.home-right-flower img {
    display: block;
    width: 100%;
    height: auto;
}

.home-left-flower {
    top: 1vw;
    left: -10vw;
    width: min(100vw, 1150px);
}

.home-right-flower {
    top: 3vw;
    right: 0;
    width: min(100vw, 900px);
    animation-delay: -2.5s;
}

@keyframes homeBranchSway {
    0% { transform: rotate(-1deg); }
    50% { transform: rotate(1deg); }
    100% { transform: rotate(-1deg); }
}

.section--home,
.section--popular,
.section--services,
.section--process,
.section--quote,
.section--faq,
.section--contacts {
    overflow-x: clip;
}


.useful-page {
    padding-bottom: clamp(110px, 9vw, 180px);
}

.useful-page__shell {
    width: min(100% - (var(--content-gutter) * 2), 1320px);
    margin: 0 auto;
}

.useful-page__header {
    margin-bottom: clamp(28px, 2.8vw, 42px);
}

.useful-page__content {
    width: min(100%, 1040px);
    margin: 0 auto;
    text-align: center;
}

.useful-page__content--wide {
    width: min(100%, 1160px);
}

.useful-page__content p {
    margin: 0;
    font-size: clamp(1.38rem, 1.9vw, 2rem);
    line-height: 1.4;
    color: var(--color-dark-green);
    text-align: center;
}

.guide-section {
    margin-top: clamp(56px, 6vw, 88px);
}

.guide-section__title {
    margin: 0 0 clamp(26px, 2.8vw, 38px);
    color: var(--color-dark-green);
    font-size: clamp(2.1rem, 3vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(24px, 2.2vw, 34px);
    align-items: start;
}

.guide-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guide-card__figure {
    margin: 0;
    aspect-ratio: 0.82 / 1;
    overflow: hidden;
    background: rgba(var(--color-beige-rgb), 0.94);
    box-shadow: 0 8px 18px rgba(var(--color-dark-green-rgb), 0.14);
}

.guide-card__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-card__caption {
    text-align: center;
}

.guide-card__title,
.guide-card__details,
.guide-card__price {
    margin: 0;
    color: var(--color-dark-green);
    text-align: center;
}

.guide-card__title {
    font-size: clamp(1.3rem, 1.6vw, 1.72rem);
    font-weight: 700;
    line-height: 1.2;
}

.guide-card__details {
    margin-top: 4px;
    font-size: clamp(1.12rem, 1.28vw, 1.36rem);
    line-height: 1.25;
}

.guide-card__price {
    margin-top: 4px;
    font-size: clamp(1.25rem, 1.45vw, 1.6rem);
    line-height: 1.1;
}

@media (max-width: 1366px) {
    :root {
        --nav-height: 76px;
        --nav-link-height: 56px;
    }

    body {
        padding-top: var(--nav-height);
    }

    .section--popular {
        background-image: url('../img/popular_bottom_ornament.png');
        background-repeat: repeat-x;
        background-position: bottom center;
        background-size: min(50vw, 500px);
    }

    .popular-header {
        margin-bottom: 18px;
        padding: 0 18px;
    }

    .section--popular .popular-title {
        margin-bottom: 0;
        font-size: clamp(3.9rem, 10.5vw, 6.1rem);
    }

    .popular-subtitle-wrap {
        width: 100%;
        margin: 0 0 30px;
        margin-left: 0;
        transform: none;
        padding: 0 18px;
    }

    .section--popular .popular-subtitle {
        font-size: clamp(1.85rem, 4.9vw, 2.4rem);
        line-height: 1.32;
    }

    .popular-carousel {
        --popular-gap: 24px;
        padding: 0 18px;
    }

    .popular-carousel__viewport {
        width: 100%;
    }

    .popular-card {
        flex: 0 0 calc((100% - var(--popular-gap)) / 2);
    }

    .popular-arrow {
        width: 48px;
        height: 48px;
    }

    .popular-card__caption {
        padding: 18px;
        font-size: clamp(1.15rem, 2.4vw, 1.5rem);
    }

    .nav-shell {
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }

    .nav-mobile-brand {
        display: inline-flex;
    }

    .nav-mobile-brand__image {
        height: 40px;
    }

    .nav-burger {
        display: inline-flex;
        margin-left: auto;
    }

    .nav-menu-wrap {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: block;
        max-height: 0;
        overflow: hidden;
        background: var(--color-beige);
        box-shadow: 0 0 0 rgba(var(--color-dark-green-rgb), 0);
        transition:
            max-height 0.35s ease,
            box-shadow 0.35s ease;
    }

    .site-nav.nav-open .nav-menu-wrap {
        max-height: calc(100vh - var(--nav-height));
        overflow-y: auto;
        box-shadow: 0 16px 28px rgba(var(--color-dark-green-rgb), 0.1);
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        display: block;
        height: auto;
    }

    .nav-link {
        width: 100%;
        height: auto;
        min-height: 64px;
        justify-content: space-between;
        padding: 0 24px;
        border-top: 1px solid rgba(var(--color-dark-green-rgb), 0.08);
    }

    .nav-dropdown {
        position: static;
        width: 100%;
        padding: 0;
        border-radius: 0 0 12px 12px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }

    .nav-item.nav-item--open > .nav-dropdown {
        max-height: 70vh;
        overflow-y: auto;
    }

    @media (max-width: 1366px) {
        .nav-item.nav-item--open > .nav-dropdown {
            max-height: 70vh;
            overflow-y: auto;
        }

        .nav-dropdown {
            scrollbar-width: thin;
        }
    }

    .nav-dropdown a {
        justify-content: flex-start;
        padding: 14px 24px 14px 40px;
        font-size: 1.08rem;
    }

    .section--quote {
        padding: 90px 0;
    }

    .quote-card {
        background-image: url('../img/quote_top_ornament.png'), url('../img/quote_bottom_ornament.png'), url('../img/quote_card_bg.png');
        background-repeat: no-repeat, no-repeat, no-repeat;
        background-position: center 28px, center calc(100% - 34px), center center;
        background-size: 18% auto, 18% auto, 100% 100%;
        padding: 92px 34px;
    }

    .section--quote .quote-text {
        max-width: 70%;
        font-size: clamp(1.2rem, 3.1vw, 1.54rem);
        font-family: var(--font-body);
        font-weight: 600;
        line-height: 1.34;
    }

    .section--home {
        height: calc(100svh - var(--nav-height));
        min-height: calc(100svh - var(--nav-height));
        padding: 32px 0;
        background-image: url('../img/home_bot_ornament.png');
        background-repeat: no-repeat;
        background-position: bottom center;
        background-size: 50vw;
    }

    .home-content {
        transform: translateY(-3vh);
    }

    .home-logo {
        width: 70vw;
        max-height: none;
    }

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

    .home-left-flower {
        top: 5vw;
        left: -30vw;
        width: min(70vw, 700px);
    }

    .home-right-flower {
        top: 18vw;
        bottom: auto;
        right: -40vw;
        width: min(70vw, 700px);
    }

    .section--services {
        background-image:
            url('../img/home_bot_ornament.png'),
            url('../img/home_bot_ornament.png');
        background-repeat: no-repeat, no-repeat;
        background-position: bottom left -5vw, bottom right -5vw;
        background-size: 45vw, 45vw;
    }

    .services-header {
        margin-bottom: 18px;
        padding: 0 18px;
    }

    .section--services .services-title {
        margin-bottom: 0;
        font-size: clamp(3.9rem, 10.5vw, 6.1rem);
    }

    .services-subtitle-wrap {
        width: 100%;
        margin: 0 0 30px;
        margin-left: 0;
        transform: none;
        padding: 0 18px;
    }

    .section--services .services-subtitle {
        font-size: clamp(1.85rem, 4.9vw, 2.4rem);
        line-height: 1.32;
    }

    .services-carousel {
        --services-gap: 24px;
        padding: 0 18px 36px;
    }

    .services-carousel__viewport {
        width: 100%;
        padding-bottom: 30px;
    }

    .services-card {
        flex: 0 0 calc((100% - var(--services-gap)) / 2);
    }

    .services-arrow {
        width: 48px;
        height: 48px;
    }

    .services-card__button-wrap {
        inset: 0;
        padding: 12px;
    }

    .services-card__button {
        min-width: 200px;
        padding: 25px 35px;
        font-size: 1.2rem;
    }

    .section--process {
        padding: 74px 0 92px;
    }

    .process-left-flower {
        top: -1vw;
        left: -45vw;
        width: min(62vw, 720px);
    }

    .process-right-flower {
        top: -20vw;
        right: -24vw;
        width: min(56vw, 640px);
    }

    .process-header {
        margin-bottom: 18px;
        padding: 0 18px;
    }

    .section--process .process-title {
        margin-bottom: 0;
        font-size: clamp(3.9rem, 10.5vw, 6.1rem);
    }

    .process-subtitle-wrap {
        width: 100%;
        margin: 0 0 30px;
        margin-left: 0;
        transform: none;
        padding: 0 18px;
    }

    .section--process .process-subtitle {
        font-size: clamp(1.85rem, 4.9vw, 2.4rem);
        line-height: 1.32;
        display: none;
    }

    .process-widget {
        width: min(100% - 36px, 980px);
        grid-template-columns: minmax(104px, 255px) 1px minmax(0, 1fr);
        column-gap: 22px;
        min-height: 248px;
    }

    .process-steps {
        gap: 16px;
        margin-left: 3vw;
        margin-top: 60px;
    }

    .process-step {
        font-size: clamp(1.38rem, 3.8vw, 1.82rem);
        line-height: 1.1;
    }

    .process-content__title {
        font-size: clamp(1.56rem, 4.2vw, 2rem);
        line-height: 1.08;
    }

    .section--process .process-content__description {
        font-size: clamp(1.12rem, 3.25vw, 1.46rem);
        line-height: 1.5;
    }

    .process-next-link {
        padding-top: 28px;
        font-size: clamp(1.04rem, 2.95vw, 1.2rem);
        text-underline-offset: 6px;
    }

    .section--faq {
        background-size: min(20vw, 200px);
        padding: 74px 0 92px;
    }

    .faq-header {
        margin-bottom: 30px;
        padding: 0 18px;
    }

    .section--faq .faq-title {
        font-size: clamp(3.9rem, 10.5vw, 6.1rem);
    }

    .faq-card {
        width: min(100% - 36px, 1100px);
        aspect-ratio: 3 / 1;
        grid-template-columns: clamp(58px, 6vw, 84px) minmax(0, 1fr) clamp(58px, 6vw, 84px);
        align-items: center;
        column-gap: clamp(18px, 2.4vw, 30px);
        padding: 28px 24px;
    }

    .faq-card__content {
        grid-column: auto;
        grid-row: auto;
        padding: 0 8px;
    }

    .faq-card__title {
        font-size: clamp(1.72rem, 3vw, 2.2rem);
        line-height: 1.14;
    }

    .section--faq .faq-card__description {
        font-size: clamp(1.16rem, 2.2vw, 1.52rem);
        line-height: 1.52;
    }

    .faq-arrow {
        width: 48px;
        height: 48px;
        grid-row: auto;
        margin-top: 0;
        align-self: center;
    }

    .faq-arrow--prev,
    .faq-arrow--next {
        justify-self: center;
    }

    .section--contacts {
        padding: 58px 0 68px;
    }

    .contacts-shell {
        width: min(100% - 36px, 980px);
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-card {
        min-height: 136px;
        padding: 22px 18px;
        border-radius: 24px;
    }

    .contact-card__text {
        font-size: clamp(1.08rem, 3vw, 1.28rem);
    }
}

@media (max-width: 520px) {
    :root {
        --nav-height: 72px;
    }

    .section--popular {
        background-image: url('../img/popular_bottom_ornament.png');
        background-repeat: repeat-x;
        background-position: bottom center;
        background-size: min(70vw, 500px);
    }

    .section--popular .popular-title {
        font-size: clamp(2.85rem, 13vw, 4.25rem);
        line-height: 1.02;
    }

    .nav-mobile-brand__image {
        height: 36px;
    }

    .popular-subtitle-wrap {
        margin: 0 0 26px;
        padding: 0 12px;
    }

    .section--popular .popular-subtitle {
        font-size: 1.56rem;
        line-height: 1.34;
    }

    .popular-carousel {
        --popular-gap: 0px;
        padding: 0 12px;
    }

    .popular-carousel__viewport {
        width: min(100%, 360px);
    }

    .popular-card {
        flex-basis: 100%;
    }

    .popular-arrow {
        width: 42px;
        height: 42px;
    }

    .popular-arrow span {
        font-size: 1.12rem;
    }

    .popular-arrow--prev {
        left: 2px;
    }

    .popular-arrow--next {
        right: 2px;
    }

    .section--quote {
        background-size: 70px auto;
        padding: 74px 0;
    }

    .quote-card {
        background-image: url('../img/quote_top_ornament.png'), url('../img/quote_bottom_ornament.png'), url('../img/quote_card_mobile_bg.png');
        background-repeat: no-repeat, no-repeat, no-repeat;
        background-position: center 24px, center calc(100% - 18px), center center;
        background-size: 22% auto, 22% auto, 100% 100%;
        padding: 60px 18px;
    }

    .section--quote .quote-text {
        max-width: 78%;
        font-size: 0.98rem;
        font-family: var(--font-body);
        font-weight: 600;
        line-height: 1.36;
    }

    .nav-shell {
        padding: 0 14px;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 0 18px;
    }

    .nav-dropdown a {
        padding: 14px 18px 14px 30px;
    }

    .section {
        padding: 72px 0;
    }

    .section--home {
        height: calc(100svh - var(--nav-height));
        min-height: calc(100svh - var(--nav-height));
        padding: 24px 0;
        align-items: stretch;
        background-image: url('../img/home_bot_ornament.png');
        background-repeat: no-repeat;
        background-position: bottom center;
        background-size: 70vw;
    }

    .home-shell {
        width: 100%;
        align-items: stretch;
    }

    .home-content {
        width: 100%;
        height: 100%;
        min-height: 100%;
        display: grid;
        grid-template-rows: 1fr auto;
        align-items: stretch;
        padding-top: 0;
    }

    .home-main {
        gap: 18px;
    }

    .home-logo {
        width: min(86vw, 420px);
    }

    .home-subtitle {
        font-size: clamp(1.55rem, 6vw, 2.05rem);
    }

    .home-button {
        width: min(100%, 260px);
        max-width: 260px;
        margin-top: 0;
        margin-bottom: clamp(28px, 7vh, 52px);
        padding: 0 22px;
        font-size: clamp(1.26rem, 4.5vw, 1.42rem);
        align-self: center;
        justify-self: center;
    }

    .home-left-flower {
        top: 25vw;
        left: -35vw;
        width: 70vw;
    }

    .home-right-flower {
        top: 90vw;
        bottom: auto;
        right: -35vw;
        width: 65vw;
    }

    .section--services {
        background-image:
            url('../img/home_top_ornament.png'),
            url('../img/home_top_ornament.png'),
            url('../img/home_bot_ornament.png');
        background-repeat: no-repeat, no-repeat, no-repeat;
        background-position: top left -40vw, top right -40vw, bottom 15px center;
        background-size: 80vw, 80vw, 20vw;
        padding: 74px 0 0;
    }

    .section--services .services-title {
        font-size: clamp(2.85rem, 13vw, 4.25rem);
        line-height: 1.02;
    }

    .services-subtitle-wrap {
        margin: 0 0 26px;
        padding: 0 12px;
    }

    .section--services .services-subtitle {
        font-size: 1.56rem;
        line-height: 1.34;
    }

    .services-carousel {
        --services-gap: 0px;
        padding: 0 12px 36px;
    }

    .services-carousel__viewport {
        width: min(100%, 360px);
        padding-bottom: 28px;
    }

    .services-card {
        flex-basis: 100%;
    }

    .services-card__figure {
        box-shadow: 0 8px 6px rgba(var(--color-dark-green-rgb), 0.05);
    }

    .services-arrow {
        width: 42px;
        height: 42px;
    }

    .services-arrow span {
        font-size: 1.12rem;
    }

    .services-arrow--prev {
        left: 2px;
    }

    .services-arrow--next {
        right: 2px;
    }

    .section--process {
        padding: 74px 0 92px;
    }

    .process-left-flower {
        top: -20vw;
        left: -25vw;
        width: 72vw;
    }

    .process-right-flower {
        top: -20vw;
        right: -50vw;
        width: 72vw;
    }

    .section--process .process-title {
        font-size: clamp(2.85rem, 13vw, 4.25rem);
        line-height: 1.02;
    }

    .process-subtitle-wrap {
        margin: 0 0 26px;
        padding: 0 12px;
    }

    .section--process .process-subtitle {
        font-size: 1.56rem;
        line-height: 1.34;
        display: none;
    }

    .process-widget {
        width: min(100% - 24px, 100%);
        grid-template-columns: minmax(88px, 145px) 1px minmax(0, 1fr);
        column-gap: 18px;
        min-height: 400px;
    }

    .process-steps {
        gap: 18px;
        margin-left: 5vw;
        margin-top: 50px;
    }

    .process-step {
        font-size: 1rem;
        line-height: 1.14;
    }

    .process-content__title {
        font-size: 1.52rem;
        line-height: 1.1;
    }

    .section--process .process-content__description {
        font-size: 1.12rem;
        line-height: 1.56;
    }

    .process-next-link {
        gap: 9px;
        padding-top: 22px;
        font-size: 1.06rem;
        text-underline-offset: 5px;
    }

    .section--faq {
        background-size: min(58vw, 400px);
        padding: 74px 0 50px;
    }

    .section--faq .faq-title {
        font-size: clamp(2.85rem, 13vw, 4.25rem);
        line-height: 1.02;
    }

    .faq-header {
        margin-bottom: 26px;
        padding: 0 12px;
    }

    .faq-card {
        width: min(100% - 24px, 320px);
        background-image: url('../img/faq_card_mobile_bg.png');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100% 100%;
        aspect-ratio: 1 / 1.5;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 18px 20px;
        overflow: hidden;
    }

    .faq-card__content {
        grid-area: auto;
        width: 100%;
        height: 100%;
        padding: 0 18px 18px;
        justify-content: center;
    }

    .faq-card__title {
        font-size: 1.56rem;
        line-height: 1.16;
    }

    .section--faq .faq-card__description {
        font-size: 1.12rem;
        line-height: 1.56;
    }

    .faq-arrow {
        position: absolute;
        bottom: 58px;
        width: 42px;
        height: 42px;
        margin-top: 0;
        align-self: auto;
        z-index: 2;
    }

    .faq-arrow--prev {
        left: 56px;
        justify-self: auto;
    }

    .faq-arrow--next {
        right: 56px;
        justify-self: auto;
    }

    .section--contacts {
        padding: 48px 0 56px;
    }

    .contacts-shell {
        width: min(100% - 24px, 100%);
    }

    .contacts-grid {
        gap: 12px;
    }

    .contact-card {
        min-height: 124px;
        padding: 20px 14px;
        gap: 14px;
        border-radius: 22px;
    }

    .contact-card__icon {
        width: 50px;
        height: 50px;
        font-size: 1.14rem;
    }

    .contact-card__text {
        font-size: 1.02rem;
        line-height: 1.34;
    }
}

.section--noderigi {
    background: var(--color-beige);
    color: var(--color-dark-green);
    overflow: hidden;
    padding: clamp(88px, 8vw, 118px) 0 clamp(61px, 7vw, 240px);
    background-image:
        url('../img/home_top_ornament.png'),
        url('../img/home_top_ornament.png'),
        url('../img/noderigi_bottom_ornament.png');
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: top left -10vw, top right -10vw, bottom 15px center;
    background-size: 35vw, 35vw, 15vw;
}

.noderigi-page {
    padding-bottom: clamp(110px, 9vw, 180px);
}

.noderigi-shell {
    width: min(100% - (var(--content-gutter) * 2), 1320px);
    margin: 0 auto;
}

.noderigi-header {
    width: 100%;
    margin: 0 0 clamp(28px, 2.8vw, 42px);
    padding: 0 clamp(22px, 2.2vw, 34px);
    text-align: center;
}

.section--noderigi .noderigi-title {
    margin-bottom: 0;
    color: var(--color-dark-green);
    font-size: clamp(4.6rem, 6.9vw, 8rem);
    line-height: 0.96;
}

.noderigi-content {
    width: min(100%, 1040px);
    margin: 0 auto;
    text-align: center;
}

.noderigi-content--wide {
    width: min(100%, 1160px);
}

.noderigi-content p {
    margin: 0;
    font-size: clamp(1.38rem, 1.9vw, 2rem);
    line-height: 1.4;
    color: var(--color-dark-green);
    text-align: center;
    margin-bottom: 20px;
}

.noderigi-guide-section {
    margin-top: clamp(56px, 6vw, 88px);
}

.noderigi-guide-section__title {
    margin: 0 0 clamp(26px, 2.8vw, 38px);
    color: var(--color-dark-green);
    font-size: clamp(2.1rem, 3vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
}

.noderigi-guide-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(24px, 2.2vw, 34px);
    align-items: start;
}

.noderigi-guide-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.noderigi-guide-card__figure {
    margin: 0;
    aspect-ratio: 0.82 / 1;
    overflow: hidden;
    background: rgba(var(--color-beige-rgb), 0.94);
    box-shadow: 0 8px 18px rgba(var(--color-dark-green-rgb), 0.14);
}

.noderigi-guide-card__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noderigi-guide-card__caption {
    text-align: center;
}

.noderigi-guide-card__title,
.noderigi-guide-card__details,
.noderigi-guide-card__price {
    margin: 0;
    color: var(--color-dark-green);
    text-align: center;
}

.noderigi-guide-card__title {
    font-size: clamp(1.3rem, 1.6vw, 1.72rem);
    font-weight: 700;
    line-height: 1.2;
}

.noderigi-guide-card__details {
    margin-top: 4px;
    font-size: clamp(1.12rem, 1.28vw, 1.36rem);
    line-height: 1.25;
}

.noderigi-guide-card__price {
    margin-top: 4px;
    font-size: clamp(1.25rem, 1.45vw, 1.6rem);
    line-height: 1.1;
}

@media (max-width: 1366px) {
    .section--noderigi {
        padding: clamp(88px, 8vw, 118px) 0 160px;
        background-image:
            url('../img/home_top_ornament.png'),
            url('../img/home_top_ornament.png'),
            url('../img/noderigi_bottom_ornament.png');
        background-repeat: no-repeat, no-repeat, no-repeat;
        background-position: top left -25vw, top right -25vw, bottom 15px center;
        background-size: 50vw, 50vw, 30vw;
    }

    .noderigi-header {
        margin-bottom: 18px;
        padding: 0 18px;
    }

    .section--noderigi .noderigi-title {
        margin-bottom: 0;
        font-size: clamp(3.9rem, 10.5vw, 6.1rem);
    }

    .noderigi-content {
        width: min(100%, 940px);
        padding: 0 18px;
        box-sizing: border-box;
    }

    .noderigi-content p {
        font-size: clamp(1.85rem, 4.9vw, 2.4rem);
        line-height: 1.32;
    }

    .noderigi-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 520px) {
    .section--noderigi {
        background-image:
            url('../img/home_top_ornament.png'),
            url('../img/home_top_ornament.png'),
            url('../img/noderigi_bottom_ornament.png');
        background-repeat: no-repeat, no-repeat, no-repeat;
        background-position: top left -40vw, top right -40vw, bottom 15px center;
        background-size: 80vw, 80vw, 40vw;
        padding: 74px 0 100px;
    }

    .section--noderigi .noderigi-title {
        font-size: clamp(2.85rem, 13vw, 4.25rem);
        line-height: 1.02;
    }

    .noderigi-content {
        padding: 0 12px;
    }

    .noderigi-content p {
        font-size: 1.56rem;
        line-height: 1.34;
    }

    .noderigi-guide-section {
        margin-top: 38px;
    }

    .noderigi-guide-section__title {
        margin-bottom: 20px;
        font-size: clamp(1.9rem, 7.6vw, 2.4rem);
    }

    .noderigi-guide-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .noderigi-guide-card {
        gap: 12px;
    }
}

/* Kontakti pages */
.kontakti-page {
    min-height: calc(100vh - var(--nav-height));
}

.kontakti-shell {
    position: relative;
    z-index: 1;
}

.kontakti-header {
    margin-bottom: clamp(30px, 4vw, 62px);
}

.section--noderigi .kontakti-title {
    margin: 0;
}

.kontakti-subtitle,
.kontakti-section-title {
    margin: 0;
    color: var(--color-dark-green);
    font-size: clamp(1.5rem, 2vw, 2.25rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.18;
    text-align: center;
}

/* Par mani */
.kontakti-page--about {
    display: flex;
    align-items: center;
    padding-top: clamp(95px, 8vw, 128px);
    padding-bottom: clamp(100px, 9vw, 170px);
}

.about-layout {
    width: min(100%, 1120px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: clamp(58px, 7vw, 110px);
    align-items: center;
}

.about-photo {
    margin: 0;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-copy {
    min-width: 0;
}

.about-copy .kontakti-title {
    text-align: left;
    font-size: clamp(5rem, 8vw, 9rem);
    line-height: 0.86;
    margin-bottom: clamp(18px, 2vw, 30px);
}

.about-copy p {
    margin: 0 0 0.15em;
    color: var(--color-dark-green);
    font-size: clamp(1.65rem, 2.25vw, 2.35rem);
    font-style: italic;
    font-weight: 600;
    line-height: 1.14;
}

/* Noteikumi */
.kontakti-page--terms {
    padding-bottom: clamp(90px, 7vw, 150px);
}

.terms-content {
    width: min(100%, 1380px);
    margin: 0 auto;
    text-align: center;
}

.terms-content ol {
    margin: clamp(26px, 3vw, 42px) 0 0;
    padding: 0;
    list-style-position: inside;
}

.terms-content li {
    margin: 0 auto clamp(16px, 1.55vw, 26px);
    color: var(--color-dark-green);
    font-size: clamp(1.35rem, 1.75vw, 2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.22;
    text-align: center;
}

/* Kontakti */
.kontakti-page--contact {
    padding-bottom: clamp(70px, 6vw, 110px);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(520px, 1.35fr);
    gap: clamp(52px, 5.8vw, 96px);
    align-items: start;
    width: min(100%, 1380px);
    margin: 0 auto;
}

.contact-meeting,
.contact-form-block {
    min-width: 0;
}

.contact-meeting .kontakti-section-title,
.contact-form-block .kontakti-section-title {
    margin-bottom: clamp(24px, 2.8vw, 38px);
    text-align: left;
}

.calendly-inline-widget {
    width: 100%;
    max-width: 520px;
    background: var(--color-beige);
}

.kontakti-form-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.92fr) minmax(320px, 1.08fr);
    gap: clamp(44px, 5vw, 78px);
    align-items: start;
}

.kontakti-form-left,
.kontakti-form-right {
    display: flex;
    flex-direction: column;
    gap: clamp(23px, 2.4vw, 38px);
}

.line-field,
.textarea-field {
    display: block;
    color: var(--color-dark-green);
}

.line-field span,
.textarea-field span,
.radio-group legend {
    display: block;
    margin: 0 0 clamp(11px, 1vw, 18px);
    color: var(--color-dark-green);
    font-size: clamp(1.35rem, 1.8vw, 2rem);
    font-style: italic;
    font-weight: 700;
    line-height: 1.08;
}

.line-field input {
    display: block;
    width: 100%;
    height: 44px;
    padding: 0 4px;
    border: 0;
    border-bottom: 1px solid rgba(var(--color-dark-green-rgb), 0.72);
    border-radius: 0;
    background: transparent;
    color: var(--color-dark-green);
    font-size: 1.25rem;
    outline: none;
}

.textarea-field textarea {
    width: 100%;
    min-height: 168px;
    padding: 14px 16px;
    border: 1px solid rgba(var(--color-dark-green-rgb), 0.74);
    border-radius: 0;
    resize: vertical;
    background: transparent;
    color: var(--color-dark-green);
    font-size: clamp(1.08rem, 1.25vw, 1.34rem);
    font-style: italic;
    line-height: 1.25;
    outline: none;
}

.textarea-field textarea::placeholder {
    color: rgba(var(--color-dark-green-rgb), 0.46);
}

.radio-group {
    margin: 0;
    padding: 0;
    border: 0;
}

.radio-group label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 26px 0 0;
    color: var(--color-dark-green);
    font-size: clamp(1.32rem, 1.75vw, 1.92rem);
    font-style: italic;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
}

.radio-group input {
    appearance: none;
    width: 24px;
    height: 24px;
    margin: 0;
    border: 1.5px solid var(--color-dark-green);
    border-radius: 50%;
    background: transparent;
    display: inline-grid;
    place-content: center;
}

.radio-group input::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-dark-green);
    transform: scale(0);
    transition: transform 0.15s ease;
}

.radio-group input:checked::before {
    transform: scale(1);
}

.kontakti-submit {
    align-self: flex-end;
    margin: clamp(2px, 0.5vw, 10px) 0 0;
    width: clamp(190px, 17vw, 250px);
    font-size: clamp(1.18rem, 1.35vw, 1.45rem);
}

.kontakti-bottom-links {
    width: min(100%, 760px);
    margin: clamp(52px, 5vw, 82px) auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(28px, 4vw, 54px);
    color: var(--color-dark-green);
}

.kontakti-bottom-links a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
    font-size: clamp(1.25rem, 1.55vw, 1.62rem);
    font-style: italic;
    font-weight: 600;
    white-space: nowrap;
}

.kontakti-bottom-links i {
    color: var(--color-green);
    font-size: 1.05em;
}

@media (max-width: 1366px) {
    .kontakti-page--about {
        padding-top: 96px;
        align-items: flex-start;
    }

    .about-layout {
        width: min(100%, 980px);
        grid-template-columns: 340px minmax(0, 1fr);
        gap: 52px;
    }

    .about-copy .kontakti-title {
        font-size: clamp(4.4rem, 9vw, 6.8rem);
        text-align: left;
    }

    .about-copy p {
        font-size: clamp(1.45rem, 2.8vw, 2rem);
    }

    .terms-content li {
        font-size: clamp(1.3rem, 2.35vw, 1.75rem);
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 58px;
        width: min(100%, 980px);
    }

    .contact-meeting .kontakti-section-title,
    .contact-form-block .kontakti-section-title {
        text-align: center;
    }

    .calendly-inline-widget {
        max-width: 720px;
        margin: 0 auto;
        height: 640px !important;
    }

    .kontakti-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 44px;
    }

    .line-field span,
    .textarea-field span,
    .radio-group legend {
        font-size: clamp(1.42rem, 3vw, 1.86rem);
    }

    .radio-group label {
        font-size: clamp(1.35rem, 2.8vw, 1.76rem);
        margin-right: 18px;
    }
}

@media (max-width: 820px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .about-photo {
        width: min(100%, 360px);
        margin: 0 auto;
    }

    .about-copy .kontakti-title {
        text-align: center;
        margin-bottom: 14px;
    }

    .about-copy p {
        font-size: 1.55rem;
        line-height: 1.2;
        text-align: center;
    }

    .kontakti-subtitle,
    .kontakti-section-title {
        font-size: 1.55rem;
    }

    .terms-content ol {
        list-style-position: outside;
        padding-left: 1.35em;
    }

    .terms-content li {
        text-align: left;
        font-size: 1.32rem;
        line-height: 1.28;
        margin-bottom: 18px;
    }

    .kontakti-form-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .kontakti-form-left,
    .kontakti-form-right {
        gap: 24px;
    }

    .line-field span,
    .textarea-field span,
    .radio-group legend {
        font-size: 1.42rem;
    }

    .line-field input {
        height: 36px;
    }

    .textarea-field textarea {
        min-height: 150px;
        font-size: 1.05rem;
    }

    .kontakti-submit {
        align-self: center;
    }

    .kontakti-bottom-links {
        flex-direction: column;
        gap: 14px;
        margin-top: 42px;
    }
}

@media (max-width: 520px) {
    .kontakti-page--about,
    .kontakti-page--terms,
    .kontakti-page--contact {
        padding-top: 76px;
    }

    .about-photo {
        width: min(100%, 300px);
    }

    .about-copy .kontakti-title {
        font-size: clamp(3.4rem, 16vw, 4.8rem);
    }

    .about-copy p {
        font-size: 1.35rem;
    }

    .kontakti-subtitle,
    .kontakti-section-title {
        font-size: 1.34rem;
        line-height: 1.22;
    }

    .calendly-inline-widget {
        height: 620px !important;
        min-width: 0 !important;
    }

    .radio-group label {
        font-size: 1.25rem;
        margin-right: 12px;
        gap: 9px;
    }

    .radio-group input {
        width: 21px;
        height: 21px;
    }

    .radio-group input::before {
        width: 12px;
        height: 12px;
    }
}

/* Fixes: contacts pages + footer/script regression */
.kontakti-page--contact .kontakti-shell {
    width: min(100% - (var(--content-gutter) * 2), 1520px);
}

.kontakti-page--contact .contact-layout {
    width: min(100%, 1500px);
    grid-template-columns: minmax(380px, 0.95fr) minmax(650px, 1.45fr);
    gap: clamp(56px, 5vw, 92px);
}

.kontakti-page--contact .calendly-inline-widget {
    max-width: 620px;
}

.kontakti-page--contact .kontakti-form-grid {
    grid-template-columns: minmax(300px, 0.92fr) minmax(430px, 1.08fr);
    gap: clamp(44px, 4vw, 66px);
}

.kontakti-page--contact .textarea-field textarea {
    min-height: 210px;
    resize: none;
    overflow: hidden;
}

.kontakti-page--contact .kontakti-submit {
    width: clamp(175px, 13vw, 220px);
    aspect-ratio: 3.65 / 1;
    margin-bottom: 0;
    font-weight: 700;
}

.kontakti-page--contact .kontakti-bottom-links {
    margin-bottom: clamp(28px, 3vw, 48px);
}

.kontakti-page--about .about-layout {
    width: min(100%, 1240px);
    grid-template-columns: minmax(320px, 430px) minmax(620px, 1fr);
    gap: clamp(54px, 6vw, 92px);
    align-items: stretch;
}

.kontakti-page--about .about-photo {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
}

.kontakti-page--about .about-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kontakti-page--terms .kontakti-subtitle {
    width: 100%;
    max-width: none;
    margin: clamp(22px, 2.4vw, 34px) auto 0;
    color: var(--color-dark-green);
    font-size: clamp(1.38rem, 1.9vw, 2rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.2;
    text-align: center;
}

@media (max-width: 1366px) {
    .kontakti-page--contact .kontakti-shell {
        width: min(100% - (var(--content-gutter) * 2), 1120px);
    }

    .kontakti-page--contact .contact-layout {
        width: min(100%, 1120px);
        grid-template-columns: 1fr;
    }

    .kontakti-page--contact .calendly-inline-widget {
        max-width: 860px;
    }

    .kontakti-page--contact .kontakti-form-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .kontakti-page--about .about-layout {
        width: min(100%, 1080px);
        grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
        gap: 46px;
        align-items: stretch;
    }
}

@media (max-width: 820px) {
    .kontakti-page--about .about-layout {
        grid-template-columns: 1fr;
        align-items: center;
    }

    .kontakti-page--about .about-photo {
        aspect-ratio: 3 / 4;
        height: auto;
    }

    .kontakti-page--contact .kontakti-form-grid {
        grid-template-columns: 1fr;
    }

    .kontakti-page--contact .textarea-field textarea {
        min-height: 175px;
    }

    .kontakti-page--contact .kontakti-submit {
        align-self: center;
    }
}

/* Final contacts fixes */
@media (max-width: 820px) {
    .kontakti-page--about .about-layout {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .kontakti-page--about .about-copy {
        display: contents;
    }

    .kontakti-page--about .about-copy .kontakti-title {
        order: 1;
        margin-bottom: 8px;
    }

    .kontakti-page--about .about-photo {
        order: 2;
        margin-top: 6px;
        margin-bottom: 12px;
    }

    .kontakti-page--about .about-copy p {
        order: 3;
    }
}
