@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --surface: #f8f9fa;
    --surface-low: #f3f4f5;
    --surface-card: #ffffff;
    --surface-muted: #e7e8e9;
    --text: #191c1d;
    --text-soft: #564334;
    --muted: #6f6258;
    --line: #e1e3e4;
    --line-warm: #ddc1ae;
    --primary: #ff8c00;
    --primary-dark: #904d00;
    --primary-soft: #ffdcc3;
    --blue: #64b5f6;
    --dark: #111314;
    --container: 1280px;
    --gutter: 24px;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow: 0 12px 34px rgba(25, 28, 29, .08);
    --shadow-hover: 0 18px 44px rgba(25, 28, 29, .14);
}

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

html {
    background: var(--surface);
    scroll-behavior: smooth;
}

body {
    background: var(--surface);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', 'Axiforma', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
}

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

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

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

button {
    cursor: pointer;
}

.ulush-page {
    min-width: 320px;
}

.site-container {
    margin: 0 auto;
    max-width: var(--container);
    padding: 0 48px;
    width: 100%;
}

main {
    padding-bottom: 120px;
}

.site-footer {
    margin-top: 72px;
}

.site-header {
    background: rgba(248, 249, 250, .94);
    border-bottom: 1px solid rgba(25, 28, 29, .08);
    box-shadow: 0 4px 18px rgba(25, 28, 29, .04);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
}

.site-nav {
    align-items: center;
    display: flex;
    gap: 28px;
    height: 65px;
    margin: 0 auto;
    max-width: var(--container);
    padding: 0 48px;
    width: 100%;
}

.site-logo,
.footer-logo {
    align-items: center;
    color: var(--primary);
    display: inline-flex;
    flex: 0 0 auto;
    gap: 8px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: .9;
    text-transform: uppercase;
}

.site-logo__img,
.footer-logo__img {
    color: currentColor;
    display: block;
    height: auto;
    width: 132px;
}

.site-menu {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    gap: 28px;
    height: 100%;
    justify-content: center;
}

.site-menu a {
    border-bottom: 2px solid transparent;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    padding: 26px 0 24px;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}

.site-menu a.is-active,
.site-menu a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.site-tools {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.lang-switch {
    align-items: center;
    background: var(--surface-card);
    border: 1px solid var(--line);
    border-radius: 999px;
    display: flex;
    gap: 2px;
    padding: 3px;
}

.lang-switch a {
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    padding: 7px 8px;
    text-transform: uppercase;
}

.lang-switch a.is-active,
.lang-switch a:hover {
    background: var(--primary);
    color: #fff;
}

.site-search {
    align-items: center;
    background: var(--surface-card);
    border: 1px solid var(--line);
    border-radius: 999px;
    display: flex;
    gap: 4px;
    padding: 4px 5px 4px 12px;
}

.site-search input {
    background: transparent;
    border: 0;
    color: var(--text);
    font-size: 12px;
    max-width: 88px;
    outline: 0;
    padding: 5px 2px;
}

.site-search button {
    align-items: center;
    background: var(--primary);
    border: 0;
    border-radius: 50%;
    color: #fff;
    display: flex;
    height: 26px;
    justify-content: center;
    line-height: 1;
    width: 26px;
}

.site-consult,
.site-btn {
    align-items: center;
    background: var(--primary);
    border: 0;
    border-radius: var(--radius);
    box-shadow: 0 10px 24px rgba(255, 140, 0, .18);
    color: #fff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    justify-content: center;
    line-height: 1;
    min-height: 44px;
    padding: 14px 22px;
    transition: transform .2s, box-shadow .2s, background .2s;
    white-space: nowrap;
}

.site-consult:hover,
.site-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 14px 30px rgba(255, 140, 0, .26);
    transform: translateY(-1px);
}

.site-btn--small {
    font-size: 13px;
    min-height: 38px;
    padding: 11px 16px;
}

.site-btn--light {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: none;
    color: var(--text);
}

.site-btn--light:hover {
    background: var(--surface-low);
    color: var(--text);
}

.site-burger {
    background: transparent;
    border: 0;
    display: none;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.site-burger span {
    background: var(--text);
    border-radius: 3px;
    display: block;
    height: 2px;
    width: 24px;
}

.home-hero,
.site-hero {
    background-position: center;
    background-size: cover;
    color: #fff;
    min-height: 760px;
    overflow: hidden;
    position: relative;
}

.home-hero__bg {
    background-position: center;
    background-size: cover;
    inset: 0;
    opacity: 0;
    position: absolute;
    transform: scale(1.035);
    transition: opacity .9s ease, transform 2.4s ease;
    z-index: 0;
}

.home-hero__bg.is-active {
    opacity: 1;
    transform: scale(1);
}

.site-hero--compact {
    min-height: 520px;
}

.home-hero::before,
.site-hero::before {
    background: linear-gradient(180deg, rgba(25, 28, 29, .42) 0%, rgba(25, 28, 29, .1) 42%, rgba(25, 28, 29, .78) 100%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.home-hero__fog,
.site-hero__fog {
    display: none;
}

.home-hero__inner,
.site-hero__inner {
    align-items: end;
    display: grid;
    gap: 48px;
    min-height: inherit;
    padding-bottom: 72px;
    padding-top: 128px;
    position: relative;
    z-index: 2;
}

.home-hero__inner {
    grid-template-columns: minmax(0, 1fr) 360px;
}

.home-hero__content,
.site-hero__inner {
    max-width: 680px;
}

.home-hero [data-hero-title],
.home-hero [data-hero-type],
.home-hero [data-hero-text],
.home-hero__actions {
    transition: opacity .34s ease, transform .34s ease;
}

.home-hero__content.is-changing [data-hero-title],
.home-hero__content.is-changing [data-hero-type],
.home-hero__content.is-changing [data-hero-text],
.home-hero__content.is-changing .home-hero__actions {
    opacity: 0;
    transform: translateY(12px);
}

.soft-pill {
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
    margin-bottom: 18px;
    padding: 8px 14px;
    text-transform: uppercase;
}

.home-hero h1,
.site-hero h1 {
    color: #fff;
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.03;
    margin: 0 0 18px;
}

.home-hero h2,
.site-hero__subtitle {
    color: rgba(255, 255, 255, .92);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.home-hero p,
.site-hero p {
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    margin: 0 0 26px;
    max-width: 600px;
}

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

.hot-tours {
    color: #fff;
    display: flex;
    flex-direction: column;
    max-height: 368px;
    overflow: hidden;
}

.home-hero__content,
.site-hero__inner,
.hot-tours,
.hot-tour,
.visual-tabs,
.tour-grid,
.tour-card,
.tour-card__body,
.country-cards,
.country-card,
.feature-card,
.gallery-grid,
.booking-dialog {
    min-width: 0;
}

.hot-tours h2 {
    color: rgba(255, 255, 255, .74);
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .07em;
    margin: 0 0 14px;
    order: -1;
    text-transform: uppercase;
}

.hot-tour {
    background-position: center;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-lg);
    color: #fff;
    display: block;
    font: inherit;
    margin-bottom: 12px;
    min-height: 92px;
    overflow: hidden;
    padding: 16px;
    position: relative;
    text-align: left;
    transition: border-color .25s ease, box-shadow .25s ease, opacity .42s ease, transform .42s ease;
    width: 100%;
}

.hot-tours.is-rotating .hot-tour {
    opacity: .76;
    transform: translateY(8px);
}

.hot-tour::before,
.image-tile::before,
.craft-card::before,
.country-card::before,
.banner-card::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, .02) 30%, rgba(0, 0, 0, .72) 100%);
    content: "";
    inset: 0;
    position: absolute;
}

.hot-tour b,
.hot-tour span {
    display: block;
    position: relative;
    z-index: 1;
}

.hot-tour b {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
}

.hot-tour span {
    color: rgba(255, 255, 255, .84);
    font-size: 12px;
    margin-top: 20px;
}

.hot-tour:hover {
    transform: translateY(-2px);
}

.hot-tour.is-active {
    border-color: rgba(255, 140, 0, .9);
    box-shadow: 0 0 0 2px rgba(255, 140, 0, .28);
    opacity: 1;
    transform: translateY(0);
}

.hot-tour.is-active::after {
    background: linear-gradient(90deg, var(--primary), rgba(255, 140, 0, .18));
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
}

.section-pull {
    margin-top: 0;
    position: relative;
    z-index: 5;
}

.section-title {
    color: var(--text);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.12;
    margin: 80px 0 28px;
}

.visual-tabs {
    display: flex;
    gap: 12px;
    margin: 24px 0 42px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.visual-tabs a,
.visual-tabs button {
    align-items: center;
    background-position: center;
    background-size: cover;
    border: 0;
    border-radius: var(--radius-lg);
    color: #fff;
    display: flex;
    flex: 0 0 230px;
    font-size: 13px;
    font-weight: 800;
    height: 80px;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-align: center;
}

.visual-tabs a::before,
.visual-tabs button::before {
    background: rgba(25, 28, 29, .5);
    content: "";
    inset: 0;
    position: absolute;
}

.visual-tabs a.is-active::before,
.visual-tabs a:hover::before,
.visual-tabs button.is-active::before,
.visual-tabs button:hover::before {
    background: rgba(255, 140, 0, .72);
}

.visual-tabs span {
    position: relative;
    z-index: 1;
}

.tour-grid {
    display: grid;
    gap: var(--gutter);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tour-filters {
    align-items: end;
    background: var(--surface-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 34px 0 10px;
    padding: 24px;
}

.tour-filters label {
    display: grid;
    gap: 6px;
}

.tour-filters span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.tour-filters input,
.tour-filters select {
    background: var(--surface-low);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    min-height: 44px;
    outline: 0;
    padding: 10px 12px;
    width: 100%;
}

.tour-filters input:focus,
.tour-filters select:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, .12);
}

.tour-filters__actions {
    display: flex;
    gap: 10px;
}

.tour-detail-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.tour-detail-facts span {
    background: var(--surface-card);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(25, 28, 29, .05);
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 800;
    padding: 9px 14px;
}

.tour-tabs__panel {
    display: none;
}

.tour-tabs__panel.is-active {
    display: block;
}

.tour-card {
    background: var(--surface-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 20px rgba(25, 28, 29, .05);
    color: var(--text);
    min-width: 0;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
}

.tour-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.tour-card__image {
    background-position: center;
    background-size: cover;
    display: block;
    height: 250px;
    overflow: hidden;
    padding: 16px;
    position: relative;
}

.tour-card__image::after {
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.48) 100%);
    content: "";
    inset: 0;
    position: absolute;
}

.tour-card__type {
    background: rgba(255, 255, 255, .94);
    border-radius: 999px;
    color: var(--primary-dark);
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    padding: 8px 12px;
    position: relative;
    z-index: 1;
}

.tour-card__flags {
    display: flex;
    gap: 5px;
    position: absolute;
    right: 14px;
    top: 16px;
    z-index: 1;
}

.tour-card__flags img {
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(25, 28, 29, .18);
    height: 22px;
    object-fit: cover;
    width: 22px;
}

.tour-card__body {
    min-height: 250px;
    padding: 24px;
}

.tour-card__date {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tour-card h3 {
    font-size: 25px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 12px;
    overflow-wrap: anywhere;
}

.tour-card h3 a {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: normal;
}

.tour-card p {
    color: var(--text-soft);
    display: -webkit-box;
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 22px;
    min-height: 70px;
    overflow: hidden;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.tour-card__foot {
    align-items: center;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding-top: 18px;
}

.tour-card__foot b {
    color: var(--primary);
    font-size: 22px;
    font-weight: 800;
}

.tour-card__actions {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 18px;
}

.journey-links {
    background: var(--surface-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    margin-top: 72px;
    overflow: hidden;
    padding: 34px;
}

.journey-links__head {
    align-items: end;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(260px, .52fr) minmax(0, 1fr);
    margin-bottom: 24px;
}

.journey-links__head h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

.journey-links__head p {
    color: var(--text-soft);
    font-size: 17px;
    margin: 0;
}

.journey-links__grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.journey-link {
    background-position: center;
    background-size: cover;
    border-radius: var(--radius-lg);
    color: #fff;
    display: flex;
    flex-direction: column;
    grid-column: span 2;
    justify-content: flex-end;
    min-height: 210px;
    overflow: hidden;
    padding: 22px;
    position: relative;
}

.journey-link:nth-child(1),
.journey-link:nth-child(2) {
    grid-column: span 3;
}

.journey-link::before {
    background: linear-gradient(180deg, rgba(25, 28, 29, .08), rgba(25, 28, 29, .76));
    content: "";
    inset: 0;
    position: absolute;
}

.journey-link span,
.journey-link p {
    position: relative;
    z-index: 1;
}

.journey-link span {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.journey-link p {
    color: rgba(255, 255, 255, .86);
    font-size: 14px;
    line-height: 1.5;
    margin: 8px 0 0;
}

.split-section,
.text-section {
    margin-top: 56px;
}

.text-section {
    max-width: 820px;
}

.text-section p,
.country-preview p,
.about-strip p {
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.75;
}

.article-content {
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.75;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: var(--ink);
    line-height: 1.2;
    margin: 30px 0 14px;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote,
.article-content table {
    margin: 0 0 18px;
}

.article-content a {
    color: var(--accent);
    font-weight: 700;
}

.article-content img {
    border-radius: var(--radius-md);
    display: block;
    height: auto;
    margin: 22px 0;
    max-width: 100%;
}

.article-content table {
    border-collapse: collapse;
    width: 100%;
}

.article-content td,
.article-content th {
    border: 1px solid rgba(30, 42, 56, .16);
    padding: 10px 12px;
}

.article-content blockquote {
    border-left: 4px solid var(--accent);
    color: var(--ink);
    padding-left: 16px;
}

.country-preview {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
}

.country-preview img,
.wide-photo {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    height: 360px;
    object-fit: cover;
    width: 100%;
}

.country-preview h3 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 16px;
}

.mini-routes,
.image-tiles {
    display: grid;
    gap: var(--gutter);
    grid-template-columns: repeat(3, 1fr);
    margin-top: 32px;
}

.mini-routes a,
.image-tile,
.craft-card {
    background-position: center;
    background-size: cover;
    border-radius: var(--radius-lg);
    color: #fff;
    display: flex;
    min-height: 210px;
    overflow: hidden;
    padding: 24px;
    position: relative;
    transition: box-shadow .25s, transform .25s;
}

.mini-routes a:hover,
.image-tile:hover,
.craft-card:hover,
.country-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.mini-routes span,
.image-tile span,
.craft-card > div {
    align-self: flex-end;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

.about-strip__grid {
    align-items: stretch;
    display: grid;
    gap: var(--gutter);
    grid-template-columns: 1fr 1fr 1fr;
}

.about-strip img,
.about-strip article {
    border-radius: var(--radius-lg);
    min-height: 280px;
}

.about-strip img {
    object-fit: cover;
    width: 100%;
}

.about-strip article {
    background: var(--surface-card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 32px;
}

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

.feature-card,
.review-card,
.timeline-cards article,
.achievement-grid article,
.partners-strip div {
    background: var(--surface-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(25, 28, 29, .05);
}

.feature-card {
    align-items: center;
    display: grid;
    gap: 22px;
    grid-template-columns: 76px minmax(0, 1fr);
    padding: 28px;
}

.feature-card__icon {
    align-items: center;
    background: var(--surface-muted);
    border-radius: 50%;
    color: var(--primary);
    display: flex;
    font-size: 24px;
    font-weight: 800;
    height: 64px;
    justify-content: center;
    width: 64px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 8px;
}

.feature-card p {
    color: var(--text-soft);
    margin: 0;
}

.reviews-grid,
.timeline-cards {
    display: grid;
    gap: var(--gutter);
    grid-template-columns: repeat(3, 1fr);
}

.review-card {
    padding: 24px;
}

.review-card b {
    background: var(--surface-muted);
    border-radius: var(--radius);
    color: var(--text);
    display: block;
    margin-bottom: 14px;
    padding: 12px 14px;
}

.review-card em,
.review-card small {
    color: var(--muted);
    display: block;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 10px;
}

.review-card p {
    color: var(--text-soft);
    margin: 0 0 12px;
}

.review-card span {
    color: var(--primary);
    letter-spacing: .08em;
}

.cta-block {
    margin-top: 80px;
}

.cta-card {
    background-position: center;
    background-size: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    color: #fff;
    min-height: 320px;
    overflow: hidden;
    padding: 56px 64px;
    position: relative;
}

.cta-card::before {
    background: linear-gradient(90deg, rgba(17, 19, 20, .82), rgba(17, 19, 20, .16));
    content: "";
    inset: 0;
    position: absolute;
}

.cta-card h2,
.cta-card p {
    max-width: 620px;
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.12;
    margin: 0 0 18px;
}

.cta-card p {
    color: rgba(255, 255, 255, .84);
    font-size: 17px;
    line-height: 1.75;
}

.cta-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 22px;
}

.gallery-grid {
    display: grid;
    gap: var(--gutter);
    grid-template-columns: 1.2fr .8fr;
}

.gallery-grid img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.gallery-grid__item--0,
.gallery-grid__item--3 {
    grid-column: span 1;
}

.gallery-grid__item--0 {
    height: 360px;
}

.gallery-grid__item--3 {
    height: 360px;
}

.service-icons {
    display: grid;
    gap: var(--gutter);
    grid-template-columns: repeat(4, 1fr);
    margin-top: 48px;
    text-align: center;
}

.service-icons b {
    align-items: center;
    background: var(--surface-muted);
    border-radius: 50%;
    color: var(--primary);
    display: inline-flex;
    font-size: 40px;
    height: 88px;
    justify-content: center;
    margin-bottom: 20px;
    width: 88px;
}

.service-icons h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 12px;
}

.service-icons p {
    color: var(--text-soft);
    font-size: 14px;
    margin: 0;
}

.services-page .section-title {
    scroll-margin-top: 90px;
}

.service-overview {
    display: grid;
    gap: var(--gutter);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-overview a {
    background: var(--surface-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    display: block;
    min-height: 250px;
    padding: 30px;
    transition: box-shadow .25s, transform .25s;
}

.service-overview a:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.service-overview span {
    color: var(--primary);
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 18px;
}

.service-overview h3,
.service-group h3,
.culture-service-card h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 12px;
}

.service-overview p,
.service-group p,
.service-section-copy p,
.culture-service-card p {
    color: var(--text-soft);
    margin: 0;
}

.service-section-copy {
    max-width: 860px;
}

.service-section-copy p {
    font-size: 18px;
    line-height: 1.75;
}

.service-tree {
    display: grid;
    gap: var(--gutter);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
}

.service-group {
    background: var(--surface-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    display: grid;
    gap: 0;
    grid-template-columns: 210px minmax(0, 1fr);
    overflow: hidden;
}

.service-group__media {
    align-items: end;
    background-position: center;
    background-size: cover;
    display: flex;
    min-height: 260px;
    padding: 22px;
    position: relative;
}

.service-group__media::before {
    background: linear-gradient(180deg, rgba(25, 28, 29, .04), rgba(25, 28, 29, .7));
    content: "";
    inset: 0;
    position: absolute;
}

.service-group__media span {
    background: rgba(255, 255, 255, .92);
    border-radius: 999px;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    padding: 10px 12px;
    position: relative;
    z-index: 1;
}

.service-group__body {
    padding: 28px;
}

.service-options {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.service-more-link {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.service-option {
    background: var(--surface-low);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    padding: 14px;
    text-align: left;
    transition: border-color .2s, background .2s;
}

.service-option:hover {
    background: #fff;
    border-color: var(--primary);
}

.service-option b,
.service-option span {
    display: block;
}

.service-option b {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
}

.service-option span {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.45;
}

.culture-service-grid {
    display: grid;
    gap: var(--gutter);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.culture-service-card {
    background-position: center;
    background-size: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    color: #fff;
    min-height: 330px;
    overflow: hidden;
    padding: 28px;
    position: relative;
}

.culture-service-card::before {
    background: linear-gradient(180deg, rgba(25, 28, 29, .04), rgba(25, 28, 29, .78));
    content: "";
    inset: 0;
    position: absolute;
}

.culture-service-card > div {
    bottom: 28px;
    left: 28px;
    position: absolute;
    right: 28px;
}

.culture-service-card h3,
.culture-service-card p {
    color: #fff;
}

.culture-service-card p {
    color: rgba(255, 255, 255, .82);
    margin-bottom: 18px;
}

.banner-card {
    align-items: center;
    background-position: center;
    background-size: cover;
    border-radius: var(--radius-xl);
    color: #fff;
    display: flex;
    justify-content: center;
    min-height: 300px;
    overflow: hidden;
    padding: 48px;
    position: relative;
    text-align: center;
}

.banner-card p,
.banner-card .site-btn {
    position: relative;
    z-index: 1;
}

.blue-form,
.contact-form {
    background: var(--surface-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.blue-form {
    margin-top: 56px;
    padding: 42px;
}

.blue-form .section-title {
    margin-top: 0;
}

.blue-form form,
.contact-form {
    display: grid;
    gap: 14px;
    margin: 0 auto;
    max-width: 560px;
}

.contact-form {
    padding: 28px;
}

.blue-form input,
.blue-form textarea,
.contact-form input,
.contact-form textarea,
.booking-dialog input,
.booking-dialog select,
.booking-dialog textarea {
    background: var(--surface-low);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    outline: 0;
    padding: 14px 16px;
    transition: border-color .2s, background .2s, box-shadow .2s;
    width: 100%;
}

.blue-form input:focus,
.blue-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.booking-dialog input:focus,
.booking-dialog select:focus,
.booking-dialog textarea:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, .12);
}

.blue-form textarea,
.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.yurt-buttons {
    display: grid;
    gap: var(--gutter);
    grid-template-columns: repeat(3, 1fr);
    margin: 32px 0 64px;
}

.craft-grid,
.country-cards {
    display: grid;
    gap: var(--gutter);
    grid-template-columns: repeat(3, 1fr);
}

.craft-card {
    min-height: 260px;
}

.wide-photo {
    margin: 56px 0;
}

.price-panel {
    background-position: center;
    background-size: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    margin-top: 56px;
    overflow: hidden;
    padding: 0 32%;
}

.price-panel > div {
    background: rgba(255, 140, 0, .94);
    color: #fff;
    min-height: 320px;
    padding: 56px 36px;
    text-align: center;
}

.price-panel span {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.price-panel b {
    display: block;
    font-size: 42px;
    font-weight: 800;
    margin: 22px 0;
}

.country-card {
    background-position: center;
    background-size: cover;
    border-radius: var(--radius-xl);
    color: #fff;
    min-height: 420px;
    overflow: hidden;
    padding: 32px;
    position: relative;
    transition: box-shadow .25s, transform .25s;
}

.country-card span,
.country-card p {
    position: relative;
    z-index: 1;
}

.country-card span {
    display: block;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    margin-top: 270px;
}

.country-card p {
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
}

.country-cards--small .country-card {
    min-height: 260px;
}

.country-cards--small .country-card span {
    margin-top: 130px;
}

.destination-page .cta-block {
    padding-left: 0;
    padding-right: 0;
}

.country-map-section {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr);
    margin-top: 56px;
}

.country-map-copy .section-title {
    margin-top: 0;
}

.country-map-copy p {
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.7;
}

.country-map-wrap {
    background: var(--surface-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    overflow: hidden;
    padding: 24px;
}

.country-region-map {
    display: block;
    height: auto;
    width: 100%;
}

.country-region path {
    fill: #8ebff0;
    stroke: #fff;
    stroke-linejoin: round;
    stroke-width: 5;
    transition: .2s;
}

.country-region:nth-child(2n) path {
    fill: #64b5f6;
}

.country-region:nth-child(3n) path {
    fill: #4c9ee5;
}

.country-region:hover path {
    fill: var(--primary);
    filter: drop-shadow(0 8px 10px rgba(255, 140, 0, .24));
    transform: translateY(-2px);
}

.country-region text {
    fill: #fff;
    font-size: 14px;
    font-weight: 800;
    paint-order: stroke;
    pointer-events: none;
    stroke: rgba(25, 28, 29, .6);
    stroke-width: 4px;
    text-anchor: middle;
}

.region-shape-card {
    align-items: center;
    background: var(--surface-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(240px, .45fr) minmax(0, 1fr);
    margin: 48px 0;
    padding: 34px;
}

.region-shape-card span {
    color: var(--primary);
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.region-shape-card h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 14px;
}

.region-shape-card p {
    color: var(--text-soft);
    margin: 0;
}

.region-shape-card svg {
    background: var(--surface-low);
    border-radius: var(--radius-lg);
    min-height: 280px;
    padding: 18px;
}

.region-shape-card path {
    fill: var(--blue);
    stroke: #fff;
    stroke-linejoin: round;
    stroke-width: 5;
}

.timeline-cards article,
.achievement-grid article {
    color: var(--text);
    font-weight: 700;
    padding: 32px;
    text-align: center;
}

.achievement-grid {
    display: grid;
    gap: var(--gutter);
    grid-template-columns: repeat(3, 1fr);
}

.achievement-main {
    grid-column: 1 / -1;
}

.achievement-grid b {
    color: var(--primary);
    display: block;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
}

.partners-strip {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(6, 1fr);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.partners-strip div {
    align-items: center;
    color: rgba(25, 28, 29, .35);
    display: flex;
    font-size: 20px;
    font-weight: 800;
    height: 120px;
    justify-content: center;
}

.contact-grid {
    display: grid;
    gap: 48px;
    grid-template-columns: 1fr 1fr;
    margin-top: 64px;
}

.site-footer {
    background: var(--surface-muted);
    border-top: 1px solid var(--line);
    color: var(--text);
    overflow: hidden;
    padding: 64px 0 34px;
}

.site-footer__inner {
    display: grid;
    gap: 64px;
    grid-template-columns: 1.4fr .8fr 1fr 1.2fr;
}

.footer-logo {
    font-size: 22px;
    margin-bottom: 28px;
}

.footer-logo__img {
    width: 154px;
}

.footer-sponsor {
    align-items: flex-start;
    background: rgba(255, 255, 255, .5);
    border: 1px solid rgba(25, 28, 29, .08);
    border-radius: var(--radius);
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 0 24px;
    max-width: 220px;
    padding: 12px 14px;
}

.footer-sponsor span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1;
    text-transform: uppercase;
}

.footer-sponsor img {
    height: auto;
    max-height: 46px;
    object-fit: contain;
    object-position: left center;
    width: min(174px, 100%);
}

.footer-brand strong,
.footer-brand p,
.footer-links a {
    display: block;
    font-size: 15px;
    margin: 0 0 12px;
}

.footer-brand strong {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-brand p,
.footer-links a {
    color: var(--text-soft);
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    align-items: center;
    background: var(--surface-card);
    border-radius: 50%;
    color: var(--text-soft);
    display: flex;
    font-weight: 800;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.footer-social img {
    height: 18px;
    object-fit: contain;
    width: 18px;
}

.contact-social {
    margin-top: 24px;
}

.site-footer__bottom {
    border-top: 1px solid rgba(25, 28, 29, .08);
    color: var(--muted);
    display: flex;
    font-size: 12px;
    justify-content: space-between;
    margin-top: 52px;
    padding-top: 24px;
}

.booking-modal {
    display: none;
    inset: 0;
    position: fixed;
    z-index: 1000;
}

.booking-modal.is-open {
    display: block;
}

.booking-modal__shade {
    background: rgba(17, 19, 20, .72);
    inset: 0;
    position: absolute;
}

.booking-dialog {
    background: var(--surface-card);
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 90px rgba(0, 0, 0, .32);
    left: 50%;
    max-height: 92vh;
    max-width: 980px;
    overflow: auto;
    padding: 38px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100vw - 48px);
}

.booking-dialog__close {
    background: transparent;
    border: 0;
    color: var(--text);
    font-size: 36px;
    position: absolute;
    right: 24px;
    top: 18px;
}

.booking-dialog__head {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    padding-right: 40px;
}

.booking-dialog__head h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
}

.booking-dialog__head a {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 700;
    padding: 11px 16px;
}

.booking-dialog__head a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.booking-step {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    margin-top: 24px;
    padding: 24px;
    position: relative;
}

.booking-step > b {
    align-items: center;
    background: var(--primary);
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 18px;
    font-weight: 800;
    height: 40px;
    justify-content: center;
    left: 24px;
    position: absolute;
    top: 24px;
    width: 40px;
}

.booking-step h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 22px 56px;
}

.booking-summary {
    display: grid;
    gap: 28px;
    grid-template-columns: 280px 1fr;
}

.booking-summary img {
    border-radius: var(--radius-lg);
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.booking-summary ul {
    color: var(--text-soft);
    list-style: none;
    padding: 0;
}

.booking-summary li {
    margin: 9px 0;
}

.booking-total {
    background: var(--primary-soft);
    border-radius: var(--radius);
    color: var(--primary-dark);
    font-size: 20px;
    font-weight: 800;
    padding: 15px 18px;
}

.booking-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
}

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

.booking-dialog label {
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
    margin: 0;
}

.booking-wide {
    grid-column: 1 / -1;
}

.counter {
    display: grid;
    grid-template-columns: 46px 1fr 46px;
}

.counter button,
.counter input {
    text-align: center;
}

.counter button {
    background: var(--primary);
    border: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.counter button:first-child {
    border-radius: var(--radius) 0 0 var(--radius);
}

.counter button:last-child {
    border-radius: 0 var(--radius) var(--radius) 0;
}

.counter input {
    border-left: 0;
    border-radius: 0;
    border-right: 0;
}

.booking-submit {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 18px;
}

.booking-policy {
    align-items: center;
    color: var(--muted) !important;
    display: flex;
    gap: 8px;
    font-size: 12px !important;
    font-weight: 500 !important;
}

.booking-policy input {
    width: auto;
}
