:root {
    --stom-green: #003c26;
    --stom-green-soft: rgba(0, 60, 38, 0.1);
    --stom-green-mid: rgba(0, 60, 38, 0.5);
    --stom-red: #e80000;
    --stom-page: #eef3f1;
    --stom-white: #ffffff;
    --stom-text-muted: rgba(0, 60, 38, 0.58);
    --stom-card-radius: 20px;
    --stom-map-radius: var(--stom-card-radius);
    --stom-shadow-inner: inset 0 0 30px rgba(255, 255, 255, 0.8);
    --stom-font: Inter, Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.stom-body {
    margin: 0;
    background: var(--stom-page);
    color: var(--stom-green);
    font-family: var(--stom-font);
}

.stom-body img {
    max-width: 100%;
}

.stom-body a {
    color: inherit;
}

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

.stom-visuallyimpaired-source {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.stom-page {
    width: min(100%, 1920px);
    margin: 0 auto;
    padding: 25px;
}

.stom-header {
    position: relative;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(310px, 360px) minmax(0, 1fr) minmax(260px, 376px);
    align-items: center;
    gap: 24px;
    min-height: 110px;
    padding: 20px 30px;
    border-radius: var(--stom-card-radius);
    background: var(--stom-white);
}

.stom-logo {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
    text-decoration: none;
}

.stom-logo img {
    width: 89px;
    height: auto;
    flex: 0 0 auto;
}

.stom-logo span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.stom-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 16px;
    background: var(--stom-green-soft);
    cursor: pointer;
}

.stom-menu-toggle img {
    width: 24px;
    height: 24px;
}

.stom-nav {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 70px;
    padding: 0 22px;
    border-radius: var(--stom-card-radius);
    background: var(--stom-green-soft);
}

.stom-nav__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 24px;
    row-gap: 8px;
    width: 100%;
}

.stom-nav a {
    font-size: 16px;
    line-height: 1.1;
    text-decoration: none;
    white-space: nowrap;
}

.stom-nav a.is-active {
    font-size: 15px;
    font-weight: 700;
}

.stom-eye-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.stom-eye-link img {
    width: 36px;
    height: 36px;
}

.stom-phone,
.stom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    border-radius: var(--stom-card-radius);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    text-decoration: none;
    text-align: center;
    box-shadow: var(--stom-shadow-inner);
}

.stom-phone {
    min-width: 0;
    width: 100%;
    padding: 0 20px;
    color: var(--stom-white);
    background: var(--stom-green);
}

.stom-button {
    padding: 20px 32px;
}

.stom-button--red {
    background: var(--stom-red);
}

.stom-button--outline {
    min-width: 309px;
    border: 2px solid var(--stom-red);
}

.stom-button--green {
    min-width: 309px;
    background: var(--stom-green);
}

.stom-body .stom-phone,
.stom-body .stom-button {
    color: var(--stom-white);
}

.stom-header a:focus-visible,
.stom-button:focus-visible,
.stom-menu-toggle:focus-visible,
.stom-service__trigger:focus-visible,
.stom-gallery__arrow:focus-visible,
.stom-doctor:focus-visible,
.stom-directory-card:focus-visible,
.stom-back-link:focus-visible {
    outline: 3px solid var(--stom-red);
    outline-offset: 4px;
}

.stom-hero {
    position: relative;
    min-height: 777px;
    margin-top: -2px;
    overflow: hidden;
    border-radius: var(--stom-card-radius);
    isolation: isolate;
}

.stom-hero__media,
.stom-hero__media img,
.stom-hero__shade {
    position: absolute;
    inset: 0;
}

.stom-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stom-hero__shade {
    background: rgba(0, 22, 12, 0.2);
}

.stom-hero__words {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 46px;
    padding-top: 70px;
    color: var(--stom-white);
    font-size: 48px;
    font-weight: 300;
}

.stom-hero__title {
    position: relative;
    z-index: 2;
    max-width: 1550px;
    margin: 330px auto 0;
    color: var(--stom-white);
    font-size: 96px;
    font-weight: 400;
    line-height: 1.04;
    text-align: center;
}

.stom-hero__actions {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 84px;
}

.stom-decor,
.stom-star {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    user-select: none;
}

.stom-decor {
    mix-blend-mode: lighten;
}

.stom-decor--hero-right {
    top: 60px;
    right: -8px;
    width: 294px;
    transform: rotate(24deg);
}

.stom-decor--hero-left {
    top: 230px;
    left: 64px;
    width: 208px;
    transform: rotate(19deg);
}

.stom-decor--hero-bottom-left {
    bottom: -36px;
    left: 44px;
    width: 138px;
    transform: rotate(-36deg);
}

.stom-decor--hero-bottom-right {
    right: 18px;
    bottom: -22px;
    width: 161px;
    transform: rotate(-22deg);
}

.stom-star--one {
    top: 132px;
    right: 28px;
    width: 112px;
    transform: rotate(50deg);
}

.stom-star--two {
    right: 28px;
    bottom: 96px;
    width: 52px;
    transform: rotate(89deg);
}

.stom-star--three {
    top: 250px;
    left: 62px;
    width: 73px;
    transform: rotate(105deg);
}

.stom-advantages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 15px 0 25px;
}

.stom-advantage {
    min-height: 120px;
    padding: 20px 25px;
    border-radius: 12px;
    background: var(--stom-white);
    color: var(--stom-green);
    font-size: 30px;
    line-height: 1;
}

.stom-section {
    border-radius: var(--stom-card-radius);
    background: var(--stom-white);
}

.stom-section__title {
    margin: 0;
    padding: 25px;
    color: var(--stom-green);
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
}

.stom-services {
    padding-bottom: 25px;
}

.stom-accordion {
    display: grid;
    gap: 25px;
    padding: 0 25px;
}

.stom-service {
    overflow: hidden;
    border-radius: var(--stom-card-radius);
}

.stom-service__heading {
    margin: 0;
}

.stom-service__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 90px;
    padding: 16px 20px 16px 25px;
    border: 0;
    border-radius: var(--stom-card-radius);
    background: var(--stom-green-soft);
    color: var(--stom-green);
    font: inherit;
    font-size: 36px;
    line-height: 1.1;
    text-align: left;
    cursor: pointer;
}

.stom-service__icon {
    position: relative;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 50%;
    background: var(--stom-white);
}

.stom-service__icon::before,
.stom-service__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 3px;
    border-radius: 999px;
    background: var(--stom-green);
    transform-origin: center;
}

.stom-service__icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.stom-service__icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.stom-service.is-open .stom-service__icon::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.stom-service.is-open .stom-service__icon::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.stom-service__panel {
    height: 0;
    overflow: hidden;
    padding-top: 0;
    opacity: 0;
    visibility: hidden;
    transition:
        height 0.38s ease,
        padding-top 0.38s ease,
        opacity 0.24s ease,
        visibility 0s linear 0.38s;
}

.stom-service.is-open .stom-service__panel {
    height:auto;
    padding-top: 25px;
    opacity: 1;
    visibility: visible;
    transition:
        height 0.38s ease,
        padding-top 0.38s ease,
        opacity 0.24s ease;
}

.stom-service__content {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) auto;
    min-height: 500px;
    gap: 48px;
    align-items: end;
    padding: 45px 50px;
    border-radius: var(--stom-card-radius);
    background:
        radial-gradient(rgba(255, 255, 255, 0.26) 1px, transparent 1px) 0 0 / 22px 22px,
        linear-gradient(90deg, var(--stom-green), var(--stom-green-mid));
    color: var(--stom-white);
}

.stom-service__copy {
    align-self: end;
    max-width: 620px;
}

.stom-service__copy p {
    margin: 0 0 20px;
    font-size: 24px;
    line-height: 1.1;
}

.stom-service__copy a {
    font-size: 24px;
    line-height: 1.1;
}

.stom-service__images {
    display: flex;
    align-items: center;
    gap: 50px;
}

.stom-service__images img {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    object-fit: cover;
}

.stom-gallery {
    position: relative;
    margin-top: 25px;
    overflow: hidden;
    border-radius: var(--stom-card-radius);
    background: var(--stom-white);
}

.stom-gallery img {
    display: block;
    width: 100%;
    height: 1059px;
    object-fit: cover;
    border-radius: var(--stom-card-radius);
    box-shadow: inset 0 0 30px var(--stom-green);
}

.stom-gallery::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 30px var(--stom-green);
    pointer-events: none;
}

.stom-gallery__arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    background: var(--stom-white);
    cursor: pointer;
    transform: translateY(-50%);
}

.stom-gallery__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    border-top: 4px solid var(--stom-green);
    border-left: 4px solid var(--stom-green);
}

.stom-gallery__arrow--prev {
    left: 30px;
}

.stom-gallery__arrow--prev::before {
    transform: translate(-35%, -50%) rotate(-45deg);
}

.stom-gallery__arrow--next {
    right: 30px;
}

.stom-gallery__arrow--next::before {
    transform: translate(-65%, -50%) rotate(135deg);
}

.stom-team {
    margin-top: 25px;
    padding-bottom: 25px;
    overflow: hidden;
}

.stom-team__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 449px;
    gap: 25px;
    overflow-x: auto;
    padding: 0 25px 20px;
    scroll-snap-type: x mandatory;
}

.stom-doctor {
    display: block;
    min-height: 566px;
    padding: 25px;
    border-radius: var(--stom-card-radius);
    background: var(--stom-green-soft);
    color: inherit;
    text-decoration: none;
    scroll-snap-align: start;
    transition: transform 0.2s ease;
}

.stom-doctor:hover {
    transform: translateY(-2px);
}

.stom-doctor--featured {
    background:
        radial-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px) 0 0 / 22px 22px,
        linear-gradient(90deg, var(--stom-green), var(--stom-green-mid));
    color: var(--stom-white);
}

.stom-doctor h3 {
    margin: 0 0 43px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
}

.stom-doctor img {
    display: block;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    object-fit: cover;
}

.stom-doctor p {
    margin: 28px 0 0;
    font-size: 20px;
    line-height: 1.1;
}

.stom-doctor--featured p {
    color: white;
    max-width: 350px;
    font-size: 16px;
}

.stom-doctor--featured h3 {
    color: white;
}
.st
.stom-reviews {
    margin-top: 25px;
    padding: 42px 40px 50px;
    border-radius: var(--stom-card-radius);
    background:
        radial-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px) 0 0 / 22px 22px,
        linear-gradient(90deg, var(--stom-green), var(--stom-green-mid));
    color: var(--stom-white);
}

.stom-reviews__header {
    max-width: 908px;
    margin: 0 auto 50px;
    text-align: center;
}

.stom-reviews__header h2 {
    margin: 0 0 20px;
    font-size: 96px;
    font-weight: 400;
    line-height: 0.9;
}

.stom-reviews__header p {
    margin: 0;
    font-size: 20px;
    line-height: 1;
}

.stom-reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.stom-review {
    display: flex;
    min-height: 411px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.6);
    color: #555a65;
    text-align: center;
    box-shadow: 0 3px 7px rgba(71, 74, 89, 0.08);
}

.stom-review__stars {
    margin-bottom: 38px;
    color: var(--stom-green);
    font-size: 40px;
    line-height: 1;
}

.stom-review p {
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
}

.stom-review__author {
    display: grid;
    justify-items: center;
    gap: 18px;
    margin-top: 34px;
    color: #999ead;
    font-size: 22px;
    font-weight: 400;
}

.stom-review__author span {
    position: relative;
    width: 51px;
    height: 51px;
    border-radius: 50%;
    background: #f7f8fa;
}

.stom-review__author span::before,
.stom-review__author span::after {
    content: "";
    position: absolute;
    left: 50%;
    border: 2px solid #999ead;
    transform: translateX(-50%);
}

.stom-review__author span::before {
    top: 13px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.stom-review__author span::after {
    bottom: 11px;
    width: 22px;
    height: 11px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    border-bottom: 0;
}

.stom-review__author strong {
    font-weight: 400;
}

.stom-mail {
    align-items: center;
    margin-top: 25px;
    padding: 25px;
    border-radius: var(--stom-card-radius);
    background: var(--stom-white);
}

.stom-mail__copy {
    display: grid;
    grid-template-columns: minmax(480px, 0.9fr) minmax(0, 1fr);
    gap: 25px;
    align-items: stretch;
    min-height: 490px;
    padding: 25px;
    border-radius: var(--stom-card-radius);
    background: var(--stom-green-soft);
}

.stom-mail__body {
    align-self: center;
}

.stom-mail__copy h2 {
    margin: 0 0 52px;
    color: var(--stom-green);
    font-size: 110px;
    font-weight: 400;
    line-height: 0.9;
}

.stom-mail__copy p {
    margin: 0 0 50px;
    font-size: 36px;
    line-height: 1;
}

.stom-mail__image {
    display: block;
    width: 100%;
    height: 440px;
    overflow: hidden;
    border-radius: var(--stom-card-radius);
}

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

.stom-map {
    margin-top: 25px;
    padding: 0;
    border-radius: var(--stom-card-radius);
    background: var(--stom-white);
}

.stom-map__widget {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    background: lightgray 50% / cover no-repeat;
    isolation: isolate;
}

.stom-map__widget [class*="ground-pane"] {
    filter: grayscale(1) contrast(0.9) brightness(1.06);
}

.stom-map-marker {
    gap: 2px;
    display: flex;
    align-items: center;
    pointer-events: auto;
}

.stom-map-marker__icon {
    display: block;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    background: url("/local/templates/stomatology/assets/img/map-dot.svg") 50% 50% / contain no-repeat;
}

.stom-map-marker__label {
    display: flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 15.891px;
    background: var(--stom-green);
    color: var(--stom-white);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    box-shadow:
        inset 0 0 15px rgba(255, 255, 255, 0.8),
        0 12px 28px rgba(0, 60, 38, 0.24);
}

.stom-footer {
    position: relative;
    margin-top: 25px;
    min-height: 853px;
    padding: 30px 25px 35px;
    overflow: hidden;
    border-radius: var(--stom-card-radius);
    background: var(--stom-white);
}

.stom-footer__grid {
    display: grid;
    grid-template-columns: 360px 430px minmax(520px, 1fr);
    gap: 70px;
    align-items: start;
    min-height: 675px;
    padding-top: 0;
}

.stom-footer__contacts {
    display: grid;
    gap: 6px;
    font-style: normal;
    font-size: 20px;
    line-height: 1.25;
}

.stom-footer__contacts strong {
    margin-top: 25px;
    color: var(--stom-green);
}

.stom-footer__contacts strong:first-child {
    margin-top: 0;
}

.stom-footer__contacts span,
.stom-footer__contacts a {
    color: var(--stom-text-muted);
    font-weight: 700;
    text-decoration: none;
}

.stom-footer__links {
    display: grid;
    gap: 6px;
    align-self: start;
    font-size: 20px;
    line-height: 1.25;
}

.stom-footer__links a {
    text-decoration: none;
}

.stom-footer__brand {
    position: relative;
    min-height: 500px;
}

.stom-footer__brand > img:first-child {
    position: absolute;
    top: 20px;
    right: 90px;
    width: 281px;
    pointer-events: none;
}

.stom-footer__star {
    position: absolute;
    top: 30px;
    right: 72px;
    width: 109px;
    transform: rotate(35deg);
}

.stom-footer__brand p {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
    color: var(--stom-green);
    font-size: 64px;
    font-weight: 500;
    line-height: 1.2;
}

.stom-footer__copy {
    position: absolute;
    left: 25px;
    bottom: 45px;
    margin: 0;
    font-size: 20px;
    font-weight: 800;
}

.stom-page--inner > .stom-inner-hero,
.stom-page--inner > .stom-detail-hero {
    margin-top: 25px;
}

.stom-inner-hero {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    border-radius: var(--stom-card-radius);
    background:
        radial-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px) 0 0 / 22px 22px,
        linear-gradient(90deg, var(--stom-green), var(--stom-green-mid));
    color: var(--stom-white);
}

.stom-inner-hero h1,
.stom-detail-hero h1 {
    max-width: 1180px;
    margin: 0;
    font-size: 72px;
    font-weight: 400;
    line-height: 1;
    overflow-wrap: anywhere;
}

.stom-inner-hero p {
    max-width: 760px;
    margin: 22px 0 0;
    font-size: 24px;
    line-height: 1.2;
}

.stom-kicker {
    display: block;
    margin: 0 0 18px;
    color: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.stom-lead {
    font-size: 30px;
    line-height: 1.15;
}

.stom-price {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    margin: 6px 0 30px;
    padding: 0 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: var(--stom-white);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.stom-back-link {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    margin-bottom: 34px;
    color: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    text-decoration: none;
}

.stom-back-link::before {
    content: "←";
    margin-right: 10px;
}

.stom-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.75fr);
    gap: 25px;
    align-items: stretch;
}

.stom-detail-hero__copy,
.stom-detail-hero__media {
    border-radius: var(--stom-card-radius);
}

.stom-detail-hero__copy {
    display: flex;
    min-height: 520px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    background:
        radial-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px) 0 0 / 22px 22px,
        linear-gradient(90deg, var(--stom-green), var(--stom-green-mid));
    color: var(--stom-white);
}

.stom-detail-hero__copy > p:not(.stom-kicker):not(.stom-lead):not(.stom-price) {
    max-width: 760px;
    margin: 18px 0 32px;
    font-size: 22px;
    line-height: 1.25;
}

.stom-detail-hero__copy .stom-button {
    width: max-content;
    max-width: 100%;
}

.stom-detail-hero__media {
    display: flex;
    min-height: 520px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px;
    background: var(--stom-white);
}

.stom-detail-hero__media img {
    width: 370px;
    height: 370px;
    border-radius: 50%;
    object-fit: cover;
}

.stom-detail-hero__media--stack {
    gap: 24px;
    flex-wrap: wrap;
    background: var(--stom-green-soft);
}

.stom-detail-hero__media--stack img {
    width: 290px;
    height: 290px;
}

.stom-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.stom-info-panel {
    min-height: 320px;
    padding: 40px;
    border-radius: var(--stom-card-radius);
    background: var(--stom-white);
}

.stom-info-panel--accent {
    background:
        radial-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px) 0 0 / 22px 22px,
        linear-gradient(90deg, var(--stom-green), var(--stom-green-mid));
    color: var(--stom-white);
}

.stom-info-panel h2 {
    margin: 0 0 24px;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.05;
}

.stom-info-panel p {
    margin: 0 0 18px;
    font-size: 22px;
    line-height: 1.3;
}

.stom-info-panel p:last-child {
    margin-bottom: 0;
}

.stom-check-list,
.stom-step-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.stom-check-list li,
.stom-step-list li {
    position: relative;
    padding-left: 34px;
    font-size: 22px;
    line-height: 1.25;
}

.stom-check-list li::before,
.stom-step-list li::before {
    position: absolute;
    left: 0;
    color: var(--stom-red);
    font-weight: 800;
}

.stom-check-list li::before {
    content: "✓";
}

.stom-step-list {
    counter-reset: stom-steps;
}

.stom-step-list li {
    counter-increment: stom-steps;
}

.stom-step-list li::before {
    content: counter(stom-steps);
}

.stom-directory,
.stom-related {
    margin-top: 25px;
    padding-bottom: 25px;
}

.stom-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    padding: 0 25px;
}

.stom-directory-card {
    display: grid;
    align-content: start;
    min-height: 280px;
    padding: 28px;
    border-radius: var(--stom-card-radius);
    background: var(--stom-green-soft);
    color: var(--stom-green);
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.stom-directory-card:hover {
    transform: translateY(-2px);
    background: rgba(0, 60, 38, 0.15);
}

.stom-directory-card.is-featured,
.stom-directory-card--service:hover {
    background:
        radial-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px) 0 0 / 22px 22px,
        linear-gradient(90deg, var(--stom-green), var(--stom-green-mid));
    color: var(--stom-white);
}

.stom-directory-card h3 {
    margin: 0 0 16px;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.08;
    overflow-wrap: anywhere;
}

.stom-directory-card p {
    margin: 0;
    color: currentColor;
    font-size: 18px;
    line-height: 1.28;
}

.stom-directory-card strong {
    margin-top: 22px;
    font-size: 20px;
    line-height: 1.1;
}

.stom-directory-card--doctor {
    min-height: 560px;
}

.stom-directory-card--doctor img {
    display: block;
    width: 280px;
    height: 280px;
    margin: 0 auto 28px;
    border-radius: 50%;
    object-fit: cover;
}

.stom-directory-card__media {
    display: flex;
    min-height: 160px;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.stom-directory-card__media img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}
@media (max-width: 1902px){
    .stom-nav {
        padding: 15px 22px 0;
    } 
}
@media (max-width: 1500px) {
    .stom-header {
        grid-template-columns: minmax(300px, 330px) minmax(0, 1fr) minmax(240px, 300px);
        gap: 16px;
    }

    .stom-nav {
        padding: 25px 0 16px;
    }

    .stom-nav a {
        font-size: 14px;
    }

    .stom-eye-link {
        gap: 0;
    }

    .stom-eye-link span {
        display: none;
    }

    .stom-phone,
    .stom-button {
        font-size: 20px;
    }

    .stom-hero__title {
        font-size: 78px;
    }

    .stom-service__images img {
        width: 340px;
        height: 340px;
    }

    .stom-mail__copy {
        grid-template-columns: 480px minmax(0, 1fr);
    }

    .stom-mail__copy h2 {
        font-size: 82px;
    }

    .stom-footer__grid {
        grid-template-columns: 320px 360px minmax(420px, 1fr);
        gap: 44px;
    }

    .stom-footer__brand p {
        font-size: 48px;
    }

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

@media (max-width: 1360px) {
    .stom-header {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 90px;
    }

    .stom-menu-toggle {
        display: inline-flex;
        grid-column: 2;
        grid-row: 1;
    }

    .stom-phone {
        display: none;
    }

    .stom-nav {
        grid-column: 1 / -1;
        min-height: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        transition:
            max-height 0.38s ease,
            opacity 0.24s ease,
            visibility 0s linear 0.38s;
    }

    .stom-nav__inner {
        justify-content: center;
        padding: 18px;
    }

    .stom-header.is-menu-open .stom-nav {
        max-height: 420px;
        opacity: 1;
        visibility: visible;
        transition:
            max-height 0.38s ease,
            opacity 0.24s ease;
    }
}

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

    .stom-header {
        grid-template-columns: 1fr auto;
        min-height: 90px;
    }

    .stom-menu-toggle {
        display: inline-flex;
        grid-column: 2;
        grid-row: 1;
    }

    .stom-phone {
        display: none;
    }

    .stom-nav {
        grid-column: 1 / -1;
    }

    .stom-nav__inner {
        gap: 14px 20px;
    }

    .stom-header.is-menu-open .stom-nav {
        max-height: 460px;
    }

    .stom-hero {
        min-height: 629px;
        margin-top: 10px;
    }

    .stom-hero__words {
        gap: 20px;
        padding-top: 42px;
        font-size: 17px;
    }

    .stom-hero__title {
        width: min(257px, calc(100% - 64px));
        margin-top: 287px;
        font-size: 40px;
        line-height: 1;
    }

    .stom-hero__actions {
        display: grid;
        gap: 15px;
        width: min(287px, calc(100% - 48px));
        margin: 30px auto 0;
    }

    .stom-button,
    .stom-button--outline,
    .stom-button--green {
        min-width: 0;
        min-height: 54px;
        padding: 14px 20px;
        font-size: 16px;
        border-radius: 12px;
    }

    .stom-decor--hero-right {
        top: 316px;
        right: 12px;
        width: 66px;
    }

    .stom-decor--hero-left {
        top: 316px;
        left: 12px;
        width: 66px;
    }

    .stom-decor--hero-bottom-left,
    .stom-decor--hero-bottom-right,
    .stom-star--one,
    .stom-star--two,
    .stom-star--three {
        display: none;
    }

    .stom-advantages {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stom-advantage {
        min-height: 54px;
        padding: 12px;
        font-size: 16px;
    }

    .stom-section__title {
        padding: 20px;
        font-size: 36px;
    }

    .stom-accordion {
        gap: 10px;
        padding: 0 20px;
    }

    .stom-service__trigger {
        min-height: 54px;
        padding: 12px 13px;
        font-size: 18px;
        border-radius: 10px;
    }

    .stom-service__icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .stom-service__content {
        grid-template-columns: 1fr;
        min-height: 226px;
        gap: 20px;
        padding: 60px 20px 20px;
        border-radius: 10px;
    }

    .stom-service__copy {
        max-width: 240px;
    }

    .stom-service__copy p,
    .stom-service__copy a {
        font-size: 13px;
    }

    .stom-service__images {
        position: absolute;
        right: 28px;
        top: 72px;
        gap: 12px;
    }

    .stom-service__panel {
        position: relative;
        padding-top: 10px;
    }

    .stom-service__images img {
        width: 80px;
        height: 80px;
    }

    .stom-gallery img {
        height: 400px;
    }

    .stom-gallery__arrow {
        width: 34px;
        height: 34px;
    }

    .stom-team__track {
        grid-auto-columns: 337px;
        gap: 16px;
        padding: 0 20px 16px;
    }

    .stom-doctor {
        min-height: 425px;
    }

    .stom-doctor img {
        width: 299px;
        height: 299px;
    }

    .stom-doctor h3 {
        margin-bottom: 18px;
        font-size: 20px;
    }

    .stom-doctor p {
        font-size: 14px;
    }

    .stom-reviews {
        padding: 20px 16px;
    }

    .stom-reviews__header h2 {
        font-size: 48px;
    }

    .stom-reviews__header p {
        font-size: 14px;
        line-height: 1.25;
    }

    .stom-reviews__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stom-review {
        min-height: 210px;
        padding: 24px;
    }

    .stom-review__stars {
        margin-bottom: 18px;
        font-size: 20px;
    }

    .stom-review p {
        font-size: 12px;
    }

    .stom-mail {
        display: block;
        max-width: 433px;
        margin-right: auto;
        margin-left: auto;
        padding: 12px;
        border-radius: var(--stom-card-radius);
    }

    .stom-mail__copy {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 0;
        min-height: auto;
        padding: 22px 18px 24px;
        text-align: center;
        border-radius: 14px;
    }

    .stom-mail__body {
        display: contents;
    }

    .stom-mail__copy h2 {
        order: 1;
        margin-bottom: 16px;
        font-size: 30px;
        line-height: 1.08;
    }

    .stom-mail__copy h2 br {
        display: none;
    }

    .stom-mail__copy p {
        order: 2;
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 1.08;
    }

    .stom-mail__image {
        order: 3;
        height: auto;
        margin-bottom: 22px;
        aspect-ratio: 376 / 241;
        border-radius: 18px;
    }

    .stom-mail__button {
        order: 4;
        width: min(310px, 100%);
        min-height: 56px;
        font-size: 18px;
        border-radius: 14px;
    }

    .stom-map__widget {
        height: 420px;
    }

    .stom-map-marker__icon {
        width: 46px;
        height: 58px;
    }

    .stom-map-marker__label {
        min-height: 36px;
        margin-left: 6px;
        padding: 0 14px;
        font-size: 13px;
    }

    .stom-footer {
        min-height: 760px;
    }

    .stom-footer__grid {
        grid-template-columns: 1fr;
        gap: 38px;
        min-height: 0;
        padding-top: 0;
    }

    .stom-footer__contacts,
    .stom-footer__links {
        font-size: 16px;
    }

    .stom-footer__brand {
        min-height: 250px;
    }

    .stom-footer__brand > img:first-child {
        top: 0;
        left: 50%;
        right: auto;
        width: 150px;
        transform: translateX(-50%);
    }

    .stom-footer__star {
        top: 4px;
        left: 58%;
        right: auto;
        width: 58px;
    }

    .stom-footer__brand p {
        left: 0;
        right: 0;
        bottom: 0;
        font-size: 28px;
        text-align: center;
    }

    .stom-footer__copy {
        right: 25px;
        bottom: 24px;
        font-size: 14px;
        text-align: center;
    }

    .stom-inner-hero {
        min-height: 300px;
        padding: 32px;
    }

    .stom-inner-hero h1,
    .stom-detail-hero h1 {
        font-size: 48px;
    }

    .stom-inner-hero p,
    .stom-detail-hero__copy > p:not(.stom-kicker):not(.stom-lead):not(.stom-price),
    .stom-info-panel p,
    .stom-check-list li,
    .stom-step-list li {
        font-size: 18px;
    }

    .stom-lead {
        font-size: 24px;
    }

    .stom-detail-hero,
    .stom-detail-grid {
        grid-template-columns: 1fr;
    }

    .stom-detail-hero__copy,
    .stom-detail-hero__media {
        min-height: 360px;
        padding: 32px;
    }

    .stom-info-panel {
        min-height: 0;
        padding: 28px;
    }

    .stom-info-panel h2 {
        font-size: 32px;
    }

    .stom-directory-card h3 {
        font-size: 26px;
    }
}

@media (max-width: 560px) {
    .stom-page {
        width: 100%;
        max-width: 100%;
        padding: 20px;
    }

    .stom-header {
        gap: 12px;
        min-height: 97px;
        padding: 18px 20px;
        border-radius: 10px;
    }

    .stom-logo img {
        width: 99px;
    }

    .stom-logo span {
        display: none;
    }

    .stom-menu-toggle {
        width: 70px;
        height: 57px;
        border-radius: 10px;
    }

    .stom-menu-toggle img {
        width: 40px;
        height: 40px;
    }

    .stom-nav {
        border-radius: 10px;
    }

    .stom-nav__inner {
        gap: 12px 16px;
        padding: 14px;
    }

    .stom-header.is-menu-open .stom-nav {
        max-height: 520px;
    }

    .stom-nav a {
        font-size: 16px;
    }

    .stom-hero {
        min-height: 629px;
        border-radius: 10px;
    }

    .stom-hero__media img {
        object-position: 50% center;
    }

    .stom-advantages {
        grid-template-columns: 1fr 1fr;
    }

    .stom-section,
    .stom-services,
    .stom-gallery,
    .stom-team,
    .stom-reviews,
    .stom-mail,
    .stom-map,
    .stom-footer {
        border-radius: 10px;
    }

    .stom-mail {
        border-radius: var(--stom-card-radius);
    }

    .stom-mail__copy {
        border-radius: 14px;
    }

    .stom-section__title {
        font-size: 30px;
    }

    .stom-service__trigger span:first-child {
        max-width: calc(100% - 46px);
    }

    .stom-gallery img {
        height: 400px;
    }

    .stom-team__track {
        grid-auto-columns: 337px;
    }

    .stom-mail__image {
        height: auto;
    }

    .stom-mail__image img {
        object-position: 50% center;
    }

    .stom-page--inner > .stom-inner-hero,
    .stom-page--inner > .stom-detail-hero {
        margin-top: 15px;
    }

    .stom-inner-hero,
    .stom-detail-hero__copy,
    .stom-detail-hero__media,
    .stom-info-panel,
    .stom-directory-card {
        border-radius: 10px;
    }

    .stom-inner-hero {
        min-height: 260px;
        padding: 24px;
    }

    .stom-inner-hero h1,
    .stom-detail-hero h1 {
        font-size: 34px;
    }

    .stom-inner-hero p,
    .stom-detail-hero__copy > p:not(.stom-kicker):not(.stom-lead):not(.stom-price) {
        font-size: 16px;
    }

    .stom-kicker {
        margin-bottom: 12px;
        font-size: 12px;
    }

    .stom-lead {
        font-size: 19px;
    }

    .stom-price {
        min-height: 44px;
        padding: 0 16px;
        font-size: 16px;
    }

    .stom-back-link {
        margin-bottom: 22px;
        font-size: 15px;
    }

    .stom-detail-hero {
        gap: 15px;
    }

    .stom-detail-hero__copy,
    .stom-detail-hero__media {
        min-height: 300px;
        padding: 24px;
    }

    .stom-detail-hero__copy .stom-button {
        width: 100%;
    }

    .stom-detail-hero__media img {
        width: 220px;
        height: 220px;
    }

    .stom-detail-hero__media--stack img {
        width: 150px;
        height: 150px;
    }

    .stom-detail-grid,
    .stom-card-grid {
        gap: 15px;
    }

    .stom-card-grid {
        grid-template-columns: 1fr;
        padding: 0 15px 15px;
    }

    .stom-info-panel h2 {
        font-size: 28px;
    }

    .stom-info-panel p,
    .stom-check-list li,
    .stom-step-list li,
    .stom-directory-card p {
        font-size: 16px;
    }

    .stom-directory,
    .stom-related {
        padding-bottom: 0;
    }

    .stom-directory-card {
        min-height: 0;
        padding: 22px;
    }

    .stom-directory-card--doctor img {
        width: 230px;
        height: 230px;
    }

    .stom-directory-card__media {
        min-height: 112px;
        margin-bottom: 20px;
    }

    .stom-directory-card__media img {
        width: 110px;
        height: 110px;
    }
}
