:root {
    --ink: #112343;
    --blue: #0c3b8f;
    --blue-deep: #08265f;
    --blue-light: #dceeff;
    --red: #d7263d;
    --red-deep: #a9142d;
    --gold: #efbf49;
    --cream: #f8f2e7;
    --white: #ffffff;
    --line: rgba(17, 35, 67, 0.12);
    --shadow: 0 22px 55px rgba(12, 44, 102, 0.16);
    --font-display: "Forum", Georgia, serif;
    --font-body: "Manrope", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body::before {
    position: fixed;
    z-index: -3;
    inset: 0;
    content: "";
    opacity: 0.045;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 1px 1px, #102143 1px, transparent 1.2px);
    background-size: 8px 8px;
}

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

button {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.page-glow {
    position: fixed;
    z-index: -2;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(45px);
    opacity: 0.2;
    pointer-events: none;
}

.page-glow--one {
    top: 22%;
    left: -250px;
    background: #52a7e8;
}

.page-glow--two {
    right: -280px;
    bottom: 4%;
    background: #f1bf3e;
}

.header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--white);
    transition: 0.25s ease;
}

.header.is-scrolled {
    position: fixed;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 3px 20px rgba(10, 34, 77, 0.1);
    backdrop-filter: blur(14px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 0.03em;
}

.brand__mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--red);
    border-radius: 50%;
    background: var(--white);
    font-size: 27px;
    font-weight: bold;
    box-shadow: inset 0 0 0 3px var(--red), inset 0 0 0 6px var(--white);
}

.header.is-scrolled .brand__mark {
    background: var(--cream);
}

.menu {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.6vw, 38px);
    margin-left: auto;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.menu a {
    position: relative;
    padding: 8px 0;
}

.menu a::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    background: currentColor;
    transition: transform 0.25s ease;
}

.menu a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-radius: 999px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-button {
    padding: 12px 18px;
    color: var(--blue-deep);
    background: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.header.is-scrolled .nav-button {
    color: var(--white);
    background: var(--blue);
}

.nav-button:hover,
.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 11px 24px rgba(4, 35, 90, 0.2);
}

.menu-toggle {
    display: none;
    padding: 6px;
    border: 0;
    color: currentColor;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px;
    background: currentColor;
    transition: 0.25s ease;
}

.hero {
    position: relative;
    display: flex;
    min-height: 760px;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    isolation: isolate;
    background:
        linear-gradient(105deg, rgba(4, 25, 75, 0.97) 3%, rgba(8, 50, 120, 0.88) 46%, rgba(16, 95, 170, 0.38) 100%),
        linear-gradient(135deg, #0b2d72, #4a99d5);
}

.hero::after {
    position: absolute;
    z-index: -1;
    right: -10%;
    bottom: -25%;
    width: 74%;
    height: 90%;
    content: "";
    opacity: 0.46;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 213, 90, 0.8) 0%, rgba(255, 180, 68, 0.15) 36%, transparent 70%);
    filter: blur(10px);
}

.hero__content {
    position: relative;
    z-index: 3;
    padding: 150px 0 130px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero__title {
    max-width: 780px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(62px, 8.8vw, 128px);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: -0.045em;
}

.hero__title span {
    color: #ffd666;
    font-style: italic;
}

.hero__lead {
    max-width: 570px;
    margin: 36px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 35px;
}

.button {
    min-height: 52px;
    padding: 0 24px;
    font-size: 13px;
    font-weight: 800;
}

.button--primary {
    color: var(--blue-deep);
    background: var(--gold);
}

.button--ghost {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
}

.button--light {
    color: var(--blue-deep);
    background: var(--white);
}

.button__arrow {
    font-size: 20px;
    line-height: 0;
}

.hero__facts {
    display: flex;
    gap: 45px;
    margin-top: 58px;
}

.hero-fact {
    display: flex;
    align-items: center;
    gap: 11px;
}

.hero-fact strong {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 37px;
    font-weight: 400;
    line-height: 1;
}

.hero-fact span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero__ornament {
    position: absolute;
    z-index: 1;
    width: 220px;
    height: 220px;
    opacity: 0.24;
    background:
        radial-gradient(circle at center, transparent 22%, currentColor 23% 27%, transparent 28%),
        repeating-conic-gradient(from 0deg, currentColor 0deg 6deg, transparent 6deg 18deg);
    border-radius: 50%;
}

.hero__ornament--left {
    top: 145px;
    left: -110px;
    color: #ffc842;
}

.hero__ornament--right {
    right: -70px;
    bottom: 120px;
    width: 310px;
    height: 310px;
    color: #ffffff;
}

.hero__landscape {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 37%;
    height: 88%;
    overflow: hidden;
}

.sun {
    position: absolute;
    top: 12%;
    right: 18%;
    width: clamp(100px, 13vw, 180px);
    height: clamp(100px, 13vw, 180px);
    border-radius: 50%;
    background: #ffd460;
    box-shadow: 0 0 70px rgba(255, 209, 83, 0.8);
}

.mountain {
    position: absolute;
    bottom: 22%;
    width: 0;
    height: 0;
    border-style: solid;
}

.mountain--back {
    right: -11%;
    border-width: 0 380px 380px;
    border-color: transparent transparent #397fc3;
    opacity: 0.6;
}

.mountain--middle {
    right: 13%;
    border-width: 0 310px 430px;
    border-color: transparent transparent #2464ac;
}

.mountain--front {
    right: -6%;
    bottom: 15%;
    border-width: 0 430px 370px;
    border-color: transparent transparent #164985;
}

.mountain::after {
    position: absolute;
    bottom: -379px;
    left: -95px;
    width: 190px;
    height: 90px;
    content: "";
    transform: rotate(45deg);
    transform-origin: center;
    background: rgba(239, 250, 255, 0.86);
    clip-path: polygon(0 0, 58% 0, 100% 100%, 30% 65%);
}

.forest {
    position: absolute;
    right: 0;
    bottom: 0;
    left: -15%;
    height: 28%;
    background:
        linear-gradient(150deg, transparent 45%, #123e56 46%) 0 100% / 80px 150px repeat-x,
        linear-gradient(30deg, transparent 45%, #0b304d 46%) 42px 100% / 100px 190px repeat-x;
}

.forest--back {
    bottom: 12%;
    opacity: 0.68;
    transform: scaleX(-1);
}

.forest--front {
    height: 31%;
    background-color: #082b43;
}

.river {
    position: absolute;
    right: 2%;
    bottom: -6%;
    width: 58%;
    height: 43%;
    transform: rotate(-18deg);
    border-radius: 52% 40% 0 0;
    background: linear-gradient(90deg, rgba(168, 229, 255, 0.1), rgba(182, 235, 255, 0.88), rgba(18, 106, 175, 0.42));
    box-shadow: inset 18px 0 20px rgba(255, 255, 255, 0.2);
}

.scroll-hint {
    position: absolute;
    z-index: 3;
    bottom: 27px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.76);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.scroll-hint i {
    display: block;
    width: 1px;
    height: 34px;
    background: var(--gold);
    animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.65); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
}

.section {
    padding: 120px 0;
}

.about {
    overflow: hidden;
}

.about__grid,
.culture__grid {
    display: grid;
    grid-template-columns: 0.96fr 1.04fr;
    align-items: center;
    gap: clamp(50px, 8vw, 135px);
}

.about h2,
.culture h2,
.section-heading h2,
.taste h2,
.cta h2 {
    margin: 0;
    color: var(--blue-deep);
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -0.035em;
}

.about__copy > p:not(.section-kicker),
.culture__copy > p:not(.section-kicker),
.taste__heading > p:not(.section-kicker) {
    max-width: 510px;
    margin: 27px 0 0;
    color: rgba(17, 35, 67, 0.77);
    font-size: 15px;
    line-height: 1.85;
}

.about__copy > p + p {
    margin-top: 12px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
}

.text-link span {
    font-size: 22px;
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.map-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    color: var(--red);
    border: 1px solid rgba(16, 50, 105, 0.13);
    border-radius: 20px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.72)),
        linear-gradient(90deg, rgba(12, 59, 143, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(12, 59, 143, 0.1) 1px, transparent 1px);
    background-size: auto, 34px 34px, 34px 34px;
    box-shadow: var(--shadow);
}

.map-card__shine {
    position: absolute;
    top: -90%;
    left: -48%;
    width: 80%;
    height: 190%;
    transform: rotate(22deg);
    background: rgba(255, 255, 255, 0.55);
}

.map-shape {
    position: absolute;
    top: 27%;
    left: 7%;
    width: 85%;
    filter: drop-shadow(0 14px 10px rgba(133, 19, 49, 0.18));
}

.map-card__label {
    position: absolute;
    z-index: 2;
    padding: 5px 8px;
    color: var(--blue);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.76);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.map-card__label--north { top: 13%; left: 46%; }
.map-card__label--west { top: 45%; left: 11%; }
.map-card__label--center { top: 59%; left: 42%; }
.map-card__label--east { top: 35%; right: 9%; }

.map-card__dot {
    position: absolute;
    z-index: 3;
    width: 11px;
    height: 11px;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(239, 191, 73, 0.2);
}

.map-card__dot--1 { top: 49%; left: 25%; }
.map-card__dot--2 { top: 57%; left: 48%; }
.map-card__dot--3 { top: 45%; left: 65%; }
.map-card__dot--4 { top: 52%; right: 13%; }

.map-card__caption {
    position: absolute;
    right: 21px;
    bottom: 18px;
    margin: 0;
    color: var(--blue-deep);
    font-family: var(--font-display);
    font-size: 22px;
}

.places {
    position: relative;
    color: var(--white);
    overflow: hidden;
    background: var(--blue-deep);
}

.places::before {
    position: absolute;
    top: -230px;
    right: -110px;
    width: 630px;
    height: 630px;
    content: "";
    opacity: 0.08;
    border: 65px solid var(--gold);
    border-radius: 50%;
}

.section-heading {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 47px;
}

.places .section-kicker {
    color: #f8cd64;
}

.places h2 {
    color: var(--white);
}

.section-heading__text {
    max-width: 340px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.75;
}

.place-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.place-card {
    position: relative;
    display: flex;
    min-height: 405px;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 15px;
    isolation: isolate;
    background: #426e9d;
    transition: transform 0.35s ease;
}

.place-card:hover {
    transform: translateY(-9px);
}

.place-card::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    content: "";
    transition: transform 0.6s ease;
}

.place-card:hover::before {
    transform: scale(1.08);
}

.place-card--city::before {
    background:
        linear-gradient(90deg, transparent 16%, rgba(255, 239, 175, 0.9) 17% 22%, transparent 23% 29%, rgba(255, 239, 175, 0.8) 30% 36%, transparent 37%),
        linear-gradient(90deg, #1b3057 0 10%, transparent 10% 14%, #315e92 14% 38%, transparent 38% 42%, #244c81 42% 60%, transparent 60% 65%, #193863 65% 100%);
    background-size: 100% 65%, 100% 100%;
    background-position: bottom, bottom;
    background-repeat: no-repeat;
}

.place-card--lake::before {
    background:
        radial-gradient(ellipse at 70% 25%, #fbd575 0 11%, transparent 11.5%),
        linear-gradient(165deg, #7ed2e6 0 46%, #387eb9 47% 60%, #135897 61% 100%);
}

.place-card--mountain::before {
    background:
        linear-gradient(150deg, transparent 42%, #dae9ea 43% 48%, transparent 49%),
        linear-gradient(33deg, transparent 41%, #e5eeee 42% 47%, transparent 48%),
        linear-gradient(135deg, #9ed1e5 0 45%, #326a92 46% 100%);
}

.place-card--north::before {
    background:
        radial-gradient(ellipse at 65% 20%, rgba(77, 250, 193, 0.74), transparent 42%),
        radial-gradient(ellipse at 40% 25%, rgba(81, 128, 255, 0.8), transparent 37%),
        linear-gradient(145deg, #141758, #090f37 68%, #06182a);
}

.place-card__overlay {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(0deg, rgba(4, 16, 45, 0.91), rgba(4, 16, 45, 0.01) 71%);
}

.place-card__pattern {
    position: absolute;
    z-index: -1;
    top: 17px;
    right: 17px;
    width: 74px;
    height: 74px;
    opacity: 0.55;
    border-radius: 50%;
    background: repeating-conic-gradient(#edc14a 0 10deg, transparent 10deg 30deg);
}

.place-card__content {
    width: 100%;
    padding: 27px 24px;
}

.place-card__number {
    margin: 0 0 46px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
}

.place-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    line-height: 0.9;
}

.place-card__content > p:not(.place-card__number) {
    min-height: 61px;
    margin: 16px 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    line-height: 1.65;
}

.place-card a {
    display: inline-flex;
    gap: 8px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.place-card a span {
    font-size: 17px;
    line-height: 0.7;
}

.culture {
    overflow: hidden;
    background: #f0e4cf;
}

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

.culture__circle {
    position: absolute;
    top: 50%;
    left: 48%;
    width: 335px;
    height: 335px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--gold);
}

.matryoshka {
    position: absolute;
    z-index: 2;
    overflow: hidden;
    border-radius: 48% 48% 41% 41% / 34% 34% 12% 12%;
    background: var(--red);
    box-shadow: 14px 18px 24px rgba(67, 34, 20, 0.18);
}

.matryoshka--large {
    bottom: 0;
    left: 17%;
    width: 257px;
    height: 402px;
}

.matryoshka--small {
    right: 3%;
    bottom: 8px;
    width: 159px;
    height: 248px;
    background: var(--blue);
}

.matryoshka__head {
    position: absolute;
    top: 22px;
    left: 50%;
    width: 63%;
    aspect-ratio: 1;
    transform: translateX(-50%);
    border: 10px solid #f2d4a0;
    border-radius: 50%;
    background: #f7dfb8;
    box-shadow: 0 0 0 17px var(--white);
}

.matryoshka--small .matryoshka__head {
    top: 15px;
    border-width: 6px;
    box-shadow: 0 0 0 10px var(--gold);
}

.matryoshka__face {
    position: absolute;
    top: 58px;
    left: 50%;
    width: 43%;
    height: 25%;
    transform: translateX(-50%);
}

.matryoshka--small .matryoshka__face {
    top: 38px;
}

.eye,
.cheek,
.smile {
    position: absolute;
}

.eye {
    top: 32%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ink);
}

.eye--left { left: 20%; }
.eye--right { right: 20%; }

.cheek {
    top: 55%;
    width: 12px;
    height: 6px;
    border-radius: 50%;
    background: #e89585;
}

.cheek--left { left: 0; }
.cheek--right { right: 0; }

.smile {
    bottom: 5%;
    left: 50%;
    width: 20px;
    height: 10px;
    transform: translateX(-50%);
    border-bottom: 3px solid #b43b45;
    border-radius: 0 0 20px 20px;
}

.matryoshka__flowers {
    position: absolute;
    right: 0;
    bottom: 13%;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.matryoshka__flowers i {
    display: block;
    width: 32px;
    height: 32px;
    border: 7px dotted var(--white);
    border-radius: 50%;
    background: var(--gold);
}

.matryoshka--small .matryoshka__flowers {
    bottom: 9%;
}

.matryoshka--small .matryoshka__flowers i {
    width: 19px;
    height: 19px;
    border-width: 4px;
}

.culture-list {
    margin-top: 34px;
    border-top: 1px solid var(--line);
}

.culture-list__item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.culture-list__item span {
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
}

.culture-list__item p {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.taste {
    text-align: center;
    background: var(--white);
}

.taste__heading {
    max-width: 665px;
    margin: 0 auto;
}

.taste__heading > p:not(.section-kicker) {
    margin-right: auto;
    margin-left: auto;
}

.taste__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 900px;
    margin: 64px auto 0;
}

.taste-item {
    padding: 10px 42px 20px;
    border-right: 1px solid var(--line);
}

.taste-item:last-child {
    border-right: 0;
}

.taste-item__icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 0 auto 17px;
    place-items: center;
    color: var(--red);
    border: 1px solid rgba(215, 38, 61, 0.25);
    border-radius: 50%;
    font-size: 30px;
}

.taste-item h3 {
    margin: 0;
    color: var(--blue-deep);
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 400;
}

.taste-item p {
    margin: 10px 0 0;
    color: rgba(17, 35, 67, 0.72);
    font-size: 12px;
    line-height: 1.65;
}

.cta {
    padding: 90px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 81% 35%, rgba(249, 197, 71, 0.97) 0 5%, transparent 5.2%),
        radial-gradient(circle at 81% 35%, transparent 0 11%, rgba(255, 255, 255, 0.18) 11.3% 12.4%, transparent 12.7%),
        linear-gradient(120deg, #aa1730, #d82740 53%, #a0102a);
}

.cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.cta .section-kicker {
    color: #ffe19a;
}

.cta h2 {
    color: var(--white);
}

.footer {
    padding: 29px 0;
    color: rgba(255, 255, 255, 0.67);
    background: #071d45;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.brand--footer {
    color: var(--white);
    font-size: 23px;
}

.brand--footer .brand__mark {
    width: 31px;
    height: 31px;
    font-size: 23px;
}

.footer p {
    margin: 0;
    font-size: 11px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .hero__landscape {
        left: 24%;
        opacity: 0.7;
    }

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

    .place-card {
        min-height: 350px;
    }

    .about__grid,
    .culture__grid {
        gap: 55px;
    }

    .matryoshka--large {
        left: 5%;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 36px, 1180px);
    }

    .nav {
        min-height: 74px;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .menu {
        position: absolute;
        top: 74px;
        right: 18px;
        left: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 18px;
        color: var(--ink);
        border-radius: 14px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .menu.is-open {
        display: flex;
    }

    .menu a {
        padding: 13px 0;
        border-bottom: 1px solid var(--line);
    }

    .menu a:last-child {
        border-bottom: 0;
    }

    .nav-button {
        display: none;
    }

    .hero {
        min-height: 700px;
    }

    .hero__content {
        padding: 130px 0 104px;
    }

    .hero__title {
        font-size: clamp(59px, 17vw, 88px);
    }

    .hero__lead {
        max-width: 450px;
        font-size: 14px;
    }

    .hero__facts {
        gap: 20px;
        margin-top: 43px;
    }

    .hero-fact {
        display: block;
    }

    .hero-fact strong {
        display: block;
        margin-bottom: 5px;
        font-size: 31px;
    }

    .hero__landscape {
        top: auto;
        left: 0;
        height: 48%;
        opacity: 0.58;
    }

    .sun {
        top: 0;
        right: 13%;
    }

    .hero__ornament--right {
        display: none;
    }

    .section {
        padding: 78px 0;
    }

    .about__grid,
    .culture__grid {
        grid-template-columns: 1fr;
    }

    .about__visual {
        order: -1;
    }

    .map-card {
        min-height: 320px;
    }

    .section-heading {
        display: block;
        margin-bottom: 30px;
    }

    .section-heading__text {
        margin-top: 20px;
    }

    .place-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .place-card {
        min-height: 295px;
    }

    .place-card__number {
        margin-bottom: 25px;
    }

    .place-card__content > p:not(.place-card__number) {
        min-height: auto;
    }

    .culture__art {
        min-height: 405px;
    }

    .matryoshka--large {
        left: 8%;
        width: 210px;
        height: 335px;
    }

    .matryoshka--small {
        right: 5%;
        width: 128px;
        height: 202px;
    }

    .culture__circle {
        width: 270px;
        height: 270px;
    }

    .taste__items {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 45px;
    }

    .taste-item {
        padding: 0 20px 25px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .taste-item:last-child {
        border-bottom: 0;
    }

    .cta {
        padding: 68px 0;
    }

    .cta__inner {
        display: block;
    }

    .cta .button {
        margin-top: 28px;
    }

    .footer__inner {
        display: grid;
        gap: 15px;
    }
}

@media (max-width: 380px) {
    .hero__facts {
        gap: 14px;
    }

    .hero-fact strong {
        font-size: 26px;
    }

    .hero-fact span {
        font-size: 8px;
    }
}
