:root {
    --color-bg: #f8f8f6;
    --color-surface: #ffffff;
    --color-text: #111111;
    --color-text-muted: #5f6764;
    --color-border: #e8e8e3;
    --color-border-soft: rgba(17, 17, 17, 0.08);
    --color-accent: #8a9461;
    --color-accent-dark: #727b4f;
    --color-shadow: rgba(29, 29, 27, 0.08);
    --container-width: 1400px;
    --container-padding: 32px;
    --header-height: 104px;
    --transition: 0.35s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button {
    padding: 0;
    background: none;
}

.container {
    width: 100%;
    max-width: calc(var(--container-width) + (var(--container-padding) * 2));
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.site-main {
    padding-top: 150px;
}

/* =========================
   BUTTONS
========================= */

.theme-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 26px;
    border: 1px solid #d8d8d4;
    background: transparent;
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    font-weight: 700;
    overflow: hidden;
    transition:
        transform var(--transition),
        border-color var(--transition),
        background-color var(--transition),
        box-shadow var(--transition),
        color var(--transition);
}

.theme-btn span,
.theme-btn svg {
    position: relative;
    z-index: 2;
}

.theme-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    transition: transform var(--transition);
}

.theme-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-101%);
    transition: transform var(--transition);
}

.theme-btn:hover {
    transform: translateY(-2px);
}

.theme-btn:hover svg {
    transform: translateX(4px);
}

.theme-btn--accent {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #ffffff;
}

.theme-btn--accent::before {
    background: rgba(255, 255, 255, 0.14);
}

.theme-btn--accent:hover::before {
    transform: translateX(0);
}

.theme-btn--accent:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    box-shadow: 0 16px 28px rgba(138, 148, 97, 0.24);
    color: #ffffff;
}

.theme-btn--outline {
    background: transparent;
}

.theme-btn--outline::before {
    background: rgba(138, 148, 97, 0.08);
}

.theme-btn--outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent-dark);
}

.theme-btn--outline:hover::before {
    transform: translateX(0);
}

.theme-btn--header {
    min-height: 46px;
    padding: 0 22px;
    font-size: 11px;
}

.theme-btn--mobile {
    width: 100%;
    min-height: 56px;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 11px;
}

/* =========================
   HEADER
========================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border-soft);
    z-index: 1000;
}

.site-header__inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-header__brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

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

.site-header__brand .custom-logo {
    max-height: 130px;
    width: auto;
    display: block;
}

.site-header__logo-text {
    display: inline-block;
    color: var(--color-text);
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
}

.desktop-navigation {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-menu li {
    margin: 0;
    padding: 0;
}

.site-menu a {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.03em;
    font-family: 'Montserrat';
    text-transform: uppercase;
    color: var(--color-text);
    transition: color var(--transition);
}

.site-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width var(--transition);
}

.site-menu a:hover,
.site-menu .current-menu-item > a,
.site-menu .current_page_item > a {
    color: var(--color-accent);
}

.site-menu a:hover::after,
.site-menu .current-menu-item > a::after,
.site-menu .current_page_item > a::after {
    width: 100%;
}

.desktop-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
}

.menu-toggle,
.desktop-burger-toggle {
    width: 52px;
    height: 52px;
    border: none;
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    padding: 0;
    transition: transform var(--transition);
    flex: 0 0 auto;
}

.menu-toggle:hover,
.desktop-burger-toggle:hover {
    transform: translateY(-1px);
}

.menu-toggle span,
.desktop-burger-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    min-height: 2px;
    max-height: 2px;
    border-radius: 999px;
    background: var(--color-text);
    opacity: 1;
    transform-origin: center;
    transition:
        transform var(--transition),
        opacity var(--transition),
        background-color var(--transition);
}

.desktop-burger-area.is-active .desktop-burger-toggle span:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg);
}

.desktop-burger-area.is-active .desktop-burger-toggle span:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.22);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 1090;
}

.mobile-menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    background: var(--color-bg);
    display: flex;
    flex-direction: column;
    padding: 22px 20px 24px;
    box-sizing: border-box;
    transform: translateX(100%);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1100;
    overflow-y: auto;
}

.mobile-menu-panel.is-open {
    transform: translateX(0);
}

.mobile-menu-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--color-border-soft);
}

.mobile-menu-panel__brand .custom-logo {
    max-height: 44px;
    width: auto;
    display: block;
}

.mobile-menu-close {
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    position: relative;
    cursor: pointer;
    flex: 0 0 auto;
}

.mobile-menu-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 1.5px;
    background: var(--color-text);
}

.mobile-menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-panel__body {
    flex: 1 1 auto;
    display: flex;
    align-items: flex-start;
    padding: 34px 0;
}

.mobile-navigation {
    width: 100%;
}

.mobile-navigation .mobile-menu {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-navigation .mobile-menu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.mobile-navigation .mobile-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 18px 0;
    color: var(--color-text);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 500;
    transition: color var(--transition), transform var(--transition);
}

.mobile-navigation .mobile-menu li a::after {
    content: '↗';
    font-size: 16px;
    line-height: 1;
    color: var(--color-accent);
    transform: translateX(0);
    transition: transform var(--transition);
}

.mobile-navigation .mobile-menu li a:hover {
    color: var(--color-accent);
}

.mobile-navigation .mobile-menu li a:hover::after {
    transform: translateX(3px) translateY(-1px);
}

.mobile-menu-panel__footer {
    display: grid;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--color-border-soft);
}

/* =========================
   DESKTOP BURGER SIDEBAR
========================= */

.desktop-burger-area {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.desktop-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.18);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 1085;
    pointer-events: none;
}

.desktop-sidebar-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.desktop-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 92vw;
    height: 100dvh;
    background: #f8f8f6;
    border-left: 1px solid rgba(17, 17, 17, 0.08);
    transform: translateX(100%);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1095;
    overflow-y: auto;
    pointer-events: none;
}

.desktop-sidebar.is-open {
    transform: translateX(0);
    pointer-events: auto;
}

.desktop-sidebar__inner {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 120px 36px 36px;
}

.desktop-sidebar__nav {
    margin-bottom: 34px;
}

.desktop-sidebar__menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.desktop-sidebar__menu li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.desktop-sidebar__menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    color: var(--color-text);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 500;
    transition: color var(--transition), transform var(--transition);
}

.desktop-sidebar__menu a::after {
    display: none;
}

.desktop-sidebar__menu a:hover {
    color: var(--color-accent-dark);
}

.desktop-sidebar__actions {
    display: grid;
    gap: 12px;
    margin-top: 8px;
    margin-bottom: 30px;
}

.desktop-sidebar__button {
    width: 100%;
    justify-content: space-between;
}

.desktop-sidebar__contacts {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    display: grid;
    gap: 12px;
}

.desktop-sidebar__contacts a {
    font-size: 15px;
    line-height: 1.5;
    color: #5f6764;
    transition: color var(--transition);
    word-break: break-word;
}

.desktop-sidebar__contacts a:hover {
    color: var(--color-accent-dark);
}

/* =========================
   HERO
========================= */

.hero-section {
    padding: 0 0 90px;
    background: var(--color-bg);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(520px, 620px);
    gap: 72px;
    align-items: start;
}

.hero-media {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 760px;
    object-fit: cover;
    display: block;
    background: #ececea;
}

.hero-content {
    padding-top: 10px;
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.hero-title {
    margin: 0 0 28px;
    font-size: 42px;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #111111;
}

.hero-text {
    max-width: 620px;
}

.hero-text p {
    margin: 0 0 24px;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
    color: #5f5f5f;
}

.hero-quote {
    margin: 38px 0 0;
    padding: 0;
    border: none;
    font-size: 18px;
    line-height: 1.5;
    font-style: italic;
    font-weight: 500;
    color: var(--color-accent-dark);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 42px;
}

/* =========================
   GALLERY PAGE
========================= */

.gallery-page {
    padding-top: 140px;
    padding-bottom: 100px;
}

.gallery-header {
    margin-bottom: 56px;
}

.gallery-title {
    margin: 0 0 28px;
    font-size: clamp(38px, 6vw, 42px);
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #111111;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 16px;
    padding-bottom: 28px;
    border-bottom: 1px solid #ecece7;
}

.gallery-filter {
    position: relative;
    padding: 0 0 14px;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #5f6764;
    cursor: pointer;
    transition: color 0.3s ease;
}

.gallery-filter::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: var(--color-accent-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.gallery-filter.is-active {
    color: var(--color-accent-dark);
}

.gallery-filter.is-active::after {
    transform: scaleX(1);
}

.gallery-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 54px;
    align-items: start;
}

.gallery-card {
    position: relative;
}

.gallery-card.gallery-card--row {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
    background: #f1f3f0;
    min-height: 620px;
    overflow: hidden;
}

.gallery-card__link {
    position: absolute;
    inset: 0;
    z-index: 5;
}

.gallery-card__media {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: #eceee9;
    min-height: 620px;
    height: 100%;
}

.gallery-card__track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 620px;
    overflow: hidden;
}

.gallery-card__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition:
        opacity 0.6s ease,
        transform 0.8s ease,
        visibility 0.6s ease;
    z-index: 1;
}

.gallery-card__slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.gallery-card__slide img,
.gallery-card__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-card__placeholder {
    background: #dde3df;
}

.gallery-card__arrow,
.gallery-card__zoom,
.gallery-lightbox__nav,
.gallery-lightbox__close,
.gallery-order-popup__close {
    border: none;
    cursor: pointer;
}

.gallery-card__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.28);
    color: #111;
    font-size: 28px;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
    z-index: 7;
}

.gallery-card__arrow:hover {
    background: rgba(255, 255, 255, 0.5);
}

.gallery-card__arrow--prev {
    left: 18px;
}

.gallery-card__arrow--next {
    right: 18px;
}

.gallery-card__zoom {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.28);
    color: #111;
    font-size: 24px;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
    z-index: 7;
}

.gallery-card__zoom:hover {
    background: rgba(255, 255, 255, 0.5);
}

.gallery-card__dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 7;
}

.gallery-card__dot,
.gallery-lightbox__dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: transparent;
    cursor: pointer;
}

.gallery-card__dot.is-active,
.gallery-lightbox__dots button.is-active {
    background: rgba(255, 255, 255, 0.95);
}

.gallery-card__media:hover .gallery-card__arrow,
.gallery-card__media:hover .gallery-card__zoom,
.gallery-card__media:hover .gallery-card__dots {
    opacity: 1;
}

.gallery-card__content {
    position: relative;
    z-index: 6;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 40px 34px;
}

.gallery-card__badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(138, 148, 97, 0.2);
    background: rgba(138, 148, 97, 0.10);
    color: var(--color-accent-dark);
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.gallery-card__title {
    margin: 0 0 20px;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.08;
    font-weight: 700;
    color: #111111;
}

.gallery-card__text {
    margin-bottom: 28px;
    max-width: 780px;
}

.gallery-card__text p {
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
    color: #5f6764;
}

.gallery-card__meta,
.gallery-card__price,
.gallery-single__price {
    display: none;
}

.gallery-card__buy {
    position: relative;
    z-index: 7;
    width: 100%;
    max-width: 280px;
    min-height: 58px;
}

/* =========================
   GALLERY LIGHTBOX
========================= */

.gallery-lightbox,
.gallery-order-popup {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.gallery-lightbox__overlay,
.gallery-order-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.72);
}

.gallery-lightbox__dialog {
    position: relative;
    z-index: 2;
    width: min(92vw, 1240px);
    height: min(88vh, 900px);
    margin: 5vh auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox__image-wrap {
    width: 100%;
    height: 100%;
}

.gallery-lightbox__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 34px;
}

.gallery-lightbox__nav--prev {
    left: 18px;
}

.gallery-lightbox__nav--next {
    right: 18px;
}

.gallery-lightbox__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 34px;
    z-index: 3;
}

.gallery-lightbox__dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

/* =========================
   ORDER POPUP
========================= */

.gallery-order-popup__dialog {
    position: relative;
    z-index: 2;
    width: min(92vw, 620px);
    margin: 8vh auto 0;
    background: #f8f8f6;
    padding: 40px 34px 34px;
}

.gallery-order-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    background: transparent;
    color: #111;
    font-size: 32px;
}

.gallery-order-popup__title {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    color: #111;
}

.gallery-order-popup__product {
    margin: 0 0 26px;
    font-size: 16px;
    line-height: 1.5;
    color: #5f6764;
}

.gallery-order-form {
    display: grid;
    gap: 16px;
}

.gallery-order-form__field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.gallery-order-form__field input,
.gallery-order-form__field textarea {
    width: 100%;
    min-height: 56px;
    padding: 14px 16px;
    border: 1px solid #dcded8;
    background: #fff;
    color: #111;
}

.gallery-order-form__field textarea {
    min-height: 120px;
    resize: vertical;
}

.gallery-order-form__message {
    font-size: 14px;
    line-height: 1.5;
    color: #cc3b3b;
}

.gallery-order-form__message.is-success {
    color: var(--color-accent-dark);
    font-size: 18px;
}

.gallery-order-form__submit {
    width: 100%;
    margin-top: 6px;
}

/* =========================
   SINGLE PRODUCT
========================= */

.gallery-single-page {
    padding-top: 140px;
    padding-bottom: 100px;
}

.gallery-single {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 48px;
    align-items: start;
}

.gallery-single__media {
    position: relative;
    background: #f1f3f0;
    overflow: hidden;
}

.gallery-single__track {
    position: relative;
    min-height: 720px;
    overflow: hidden;
}

.gallery-single__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity 0.55s ease, transform 0.7s ease, visibility 0.55s ease;
}

.gallery-single__slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.gallery-single__slide img,
.gallery-single__placeholder {
    width: 100%;
    height: 100%;
    min-height: 720px;
    object-fit: cover;
    display: block;
}

.gallery-single__placeholder {
    background: #dde3df;
}

.gallery-single__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: none;
    background: rgba(255,255,255,0.28);
    color: #111;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s ease;
}

.gallery-single__arrow:hover {
    background: rgba(255,255,255,0.48);
}

.gallery-single__arrow--prev {
    left: 18px;
}

.gallery-single__arrow--next {
    right: 18px;
}

.gallery-single__dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.gallery-single__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.9);
    background: transparent;
    cursor: pointer;
}

.gallery-single__dot.is-active {
    background: rgba(255,255,255,0.95);
}

.gallery-single__content {
    padding-top: 10px;
}

.gallery-single__title {
    margin: 0 0 22px;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.04;
    font-weight: 700;
    color: #111111;
}

.gallery-single__text {
    margin-bottom: 28px;
}

.gallery-single__text p {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #5f6764;
}

.gallery-single__button {
    min-width: 260px;
}

/* =========================
   COURSES PAGE
========================= */

.courses-page {
    padding-top: 140px;
    padding-bottom: 100px;
}

.courses-header {
    margin-bottom: 42px;
}

.courses-title {
    margin: 0;
    font-size: clamp(38px, 6vw, 42px);
    line-height: 1.5em;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #111111;
}

.courses-intro {
    max-width: 980px;
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.85;
    color: #5f6764;
}

.courses-intro p {
    margin: 0 0 18px;
}

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

.course-card {
    position: relative;
    background: #f1f3f0;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.course-card__link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.course-card__media {
    position: relative;
    overflow: hidden;
    background: #f1f3f0;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.course-card__image-wrap {
    width: 100%;
    height: 100%;
    min-height: 296px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-card__media img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    display: block;
}

.course-card__placeholder {
    width: 100%;
    min-height: 300px;
    background: #dde3df;
}

.course-card__date-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(8px);
    color: var(--color-accent-dark);
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.course-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 28px 26px 26px;
    flex: 1 1 auto;
}

.course-card__title {
    margin: 0 0 16px;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #111111;
}

.course-card__text {
    margin-bottom: 22px;
}

.course-card__text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #5f6764;
}

.course-card__meta {
    margin-top: auto;
    margin-bottom: 24px;
}

.course-card__meta-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #e1e5e0;
}

.course-card__meta-row span {
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7d8782;
}

.course-card__meta-row strong {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 500;
    color: #2f3633;
    text-align: right;
}

.course-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.course-card__more,
.course-card__button {
    position: relative;
    z-index: 2;
    flex: 1 1 220px;
}

.courses-empty {
    margin: 0;
    font-size: 18px;
    color: #5f6764;
}

/* =========================
   COURSE POPUP
========================= */

.course-popup {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.course-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.72);
}

.course-popup__dialog {
    position: relative;
    z-index: 2;
    width: min(92vw, 620px);
    margin: 8vh auto 0;
    background: #f8f8f6;
    padding: 40px 34px 34px;
}

.course-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: #111;
    font-size: 32px;
    cursor: pointer;
}

.course-popup__title {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    color: #111;
}

.course-popup__course-name {
    margin: 0 0 26px;
    font-size: 16px;
    line-height: 1.5;
    color: #5f6764;
}

.course-popup__form {
    display: grid;
    gap: 16px;
}

.course-popup__field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.course-popup__field input,
.course-popup__field textarea {
    width: 100%;
    min-height: 56px;
    padding: 14px 16px;
    border: 1px solid #dcded8;
    background: #fff;
    color: #111;
}

.course-popup__field textarea {
    min-height: 120px;
    resize: vertical;
}

.course-popup__message {
    font-size: 14px;
    line-height: 1.5;
    color: #cc3b3b;
}

.course-popup__message.is-success {
    color: var(--color-accent-dark);
    font-size: 18px;
}

.course-popup__submit {
    width: 100%;
    margin-top: 6px;
}

/* =========================
   SINGLE COURSE
========================= */

.course-single-page {
    padding-top: 120px;
    padding-bottom: 100px;
}

.course-single {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
    gap: 42px;
    align-items: start;
    margin-bottom: 54px;
}

.course-single__media {
    background: #f1f3f0;
    padding: 20px;
}

.course-single__media img,
.course-single__placeholder {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.course-single__placeholder {
    min-height: 420px;
    background: #dde3df;
}

.course-single__title {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.05;
    font-weight: 700;
    color: #111111;
}

.course-single__lead {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.75;
    color: #5f6764;
}

.course-single__lead p {
    margin: 0;
}

.course-single__objects {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-accent-dark);
    font-weight: 600;
}

.course-single__facts {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.course-single__fact {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #e1e5e0;
}

.course-single__fact span {
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7d8782;
}

.course-single__fact strong {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    color: #2f3633;
    text-align: right;
}

.course-single__button {
    min-width: 260px;
}

.course-single__sections {
    max-width: 980px;
}

.course-single__section {
    margin-bottom: 38px;
}

.course-single__section h2 {
    margin: 0 0 14px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    font-weight: 700;
    color: #111111;
}

.course-single__section-text,
.course-single__section p,
.course-single__note {
    font-size: 17px;
    line-height: 1.8;
    color: #5f6764;
}

.course-single__section ul {
    margin: 0;
    padding-left: 22px;
}

.course-single__section li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.75;
    color: #2f3633;
}

/* =========================
   CONTACT PAGE
========================= */

.contact-page {
    padding-top: 140px;
    padding-bottom: 100px;
}

.contact-header {
    margin-bottom: 42px;
}

.contact-title {
    margin: 0;
    font-size: clamp(38px, 6vw, 42px);
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #111111;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 40px;
    align-items: start;
}

.contact-form-wrap,
.contact-info {
    background: #f1f3f0;
    padding: 34px 30px 30px;
}

.contact-block-title {
    margin: 0 0 12px;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.1;
    font-weight: 700;
    color: #111111;
}

.contact-block-text {
    margin: 0 0 26px;
    font-size: 16px;
    line-height: 1.7;
    color: #5f6764;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form__field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    min-height: 56px;
    padding: 14px 16px;
    border: 1px solid #dcded8;
    background: #fff;
    color: #111;
}

.contact-form__field textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form__message {
    font-size: 14px;
    line-height: 1.5;
    color: #cc3b3b;
}

.contact-form__message.is-success {
    color: var(--color-accent-dark);
    font-size: 18px;
}

.contact-form__submit {
    width: 100%;
    margin-top: 6px;
}

.contact-info__item + .contact-info__item {
    margin-top: 26px;
}

.contact-info__label {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7d8782;
}

.contact-info__value {
    font-size: 16px;
    line-height: 1.8;
    color: #2f3633;
}

.contact-info__value a {
    color: inherit;
    transition: color var(--transition);
}

.contact-info__value a:hover {
    color: var(--color-accent-dark);
}

.contact-side {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 24px;
    min-height: 100%;
}

.contact-map-card {
    background: #f1f3f0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.contact-map-card__head {
    margin-bottom: 14px;
}

.contact-map {
    position: relative;
    flex: 1 1 auto;
    min-height: 260px;
    overflow: hidden;
    background: #e7ebe8;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(0.08) contrast(1.02);
}

/* =========================
   EXHIBITIONS PAGE
========================= */

.exhibitions-page {
    padding-top: 140px;
    padding-bottom: 100px;
}

.exhibitions-header {
    margin-bottom: 42px;
}

.exhibitions-title {
    margin: 0;
    font-size: clamp(38px, 6vw, 42px);
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #111111;
}

.exhibitions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 36px;
    align-items: start;
}

.exhibition-card {
    display: flex;
    flex-direction: column;
}

.exhibition-card__media {
    position: relative;
    background: #f1f3f0;
    overflow: hidden;
    padding: 0;
}

.exhibition-card__media img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.exhibition-card__placeholder {
    width: 100%;
    min-height: 460px;
    background: #dde3df;
}

.exhibition-card__zoom {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.82);
    color: #111111;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s ease, transform 0.3s ease;
}

.exhibition-card__zoom:hover {
    background: rgba(255, 255, 255, 0.96);
    transform: translateY(-1px);
}

.exhibition-card__content {
    padding-top: 18px;
}

.exhibition-card__title {
    margin: 0 0 14px;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #111111;
}

.exhibition-card__description {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.75;
    color: #5f6764;
}

.exhibition-card__description p {
    margin: 0 0 14px;
}

.exhibition-card__meta-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #e1e5e0;
}

.exhibition-card__meta-row span {
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7d8782;
}

.exhibition-card__meta-row strong {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    color: #2f3633;
    text-align: right;
}

.exhibitions-empty {
    margin: 0;
    font-size: 18px;
    color: #5f6764;
}

/* =========================
   EXHIBITIONS LIGHTBOX
========================= */

.exhibition-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1260;
}

.exhibition-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.78);
}

.exhibition-lightbox__dialog {
    position: relative;
    z-index: 2;
    width: min(92vw, 1240px);
    height: min(88vh, 900px);
    margin: 5vh auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exhibition-lightbox__image-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exhibition-lightbox__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.exhibition-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border: none;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 34px;
    cursor: pointer;
    z-index: 3;
}

.exhibition-lightbox__nav--prev {
    left: 18px;
}

.exhibition-lightbox__nav--next {
    right: 18px;
}

.exhibition-lightbox__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 52px;
    height: 52px;
    border: none;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 34px;
    cursor: pointer;
    z-index: 4;
}

.exhibition-lightbox__dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.exhibition-lightbox__dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: transparent;
    cursor: pointer;
}

.exhibition-lightbox__dots button.is-active {
    background: rgba(255, 255, 255, 0.95);
}

/* =========================
   GIFT CERTIFICATE POPUP
========================= */

.gift-popup {
    position: fixed;
    inset: 0;
    z-index: 1250;
}

.gift-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.72);
}

.gift-popup__dialog {
    position: relative;
    z-index: 2;
    width: min(92vw, 620px);
    margin: 8vh auto 0;
    background: #f8f8f6;
    padding: 40px 34px 34px;
}

.gift-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: #111;
    font-size: 32px;
    cursor: pointer;
}

.gift-popup__title {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    color: #111;
}

.gift-popup__subtitle {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.5;
    color: #5f6764;
}

.gift-popup__form {
    display: grid;
    gap: 16px;
}

.gift-popup__field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.gift-popup__field input,
.gift-popup__field textarea {
    width: 100%;
    min-height: 56px;
    padding: 14px 16px;
    border: 1px solid #dcded8;
    background: #fff;
    color: #111;
}

.gift-popup__field textarea {
    min-height: 120px;
    resize: vertical;
}

.gift-popup__message {
    font-size: 14px;
    line-height: 1.5;
    color: #cc3b3b;
}

.gift-popup__message.is-success {
    color: var(--color-accent-dark);
    font-size: 18px;
}

.gift-popup__submit {
    width: 100%;
    margin-top: 6px;
}



/* =========================
   FOOTER
========================= */

.site-footer {
    margin-top: 100px;
    padding: 48px 0 0;
    background: #f1f3f0;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(0, 2fr);
    gap: 48px;
    padding-bottom: 34px;
}

.site-footer__brand {
    max-width: 360px;
}

.site-footer__logo .custom-logo {
    max-height: 64px;
    width: auto;
    display: block;
}

.site-footer__logo-text {
    display: inline-block;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    color: #111111;
    text-decoration: none;
}

.site-footer__text {
    margin: 18px 0 0;
    font-size: 15px;
    line-height: 1.8;
    color: #5f6764;
}

.site-footer__columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.site-footer__title {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7d8782;
}

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

.site-footer__menu li + li {
    margin-top: 10px;
}

.site-footer__menu a,
.site-footer__link-button {
    color: #2f3633;
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
    transition: color var(--transition);
}

.site-footer__menu a:hover,
.site-footer__link-button:hover,
.site-footer__contact a:hover {
    color: var(--color-accent-dark);
}

.site-footer__link-button {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.site-footer__contact p {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.8;
    color: #2f3633;
}

.site-footer__contact a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.site-footer__bottom {
    padding: 18px 0 22px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.site-footer__bottom p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #7d8782;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
    .gallery-card.gallery-card--row {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .gallery-card__media,
    .gallery-card__track {
        min-height: 520px;
    }

    .gallery-card__content {
        padding: 30px 28px 28px;
    }

    .courses-grid,
    .exhibitions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .hero-image {
        min-height: 560px;
    }

    .hero-content,
    .hero-text {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    :root {
        --header-height: 84px;
    }

    .desktop-navigation,
    .desktop-actions,
    .desktop-burger-area,
    .desktop-sidebar,
    .desktop-sidebar-overlay {
        display: none;
    }

    .site-header__inner {
        min-height: var(--header-height);
    }

    .site-header__brand .custom-logo {
        max-height: 42px;
    }

    .site-header__logo-text {
        font-size: 26px;
    }

    .gallery-single,
    .course-single,
    .contact-layout,
    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .gallery-single__track,
    .gallery-single__slide img,
    .gallery-single__placeholder {
        min-height: 520px;
    }

    .contact-side {
        grid-template-rows: auto auto;
    }

    .contact-map-card {
        min-height: 300px;
    }

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

@media (min-width: 1025px) {
    .mobile-menu-overlay,
    .mobile-menu-panel,
    .menu-toggle {
        display: none;
    }
}

@media (max-width: 900px) {
    .gallery-card.gallery-card--row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    :root {
        --container-padding: 20px;
    }

    .site-main,
    .gallery-page,
    .courses-page,
    .contact-page,
    .exhibitions-page,
    .gallery-single-page,
    .course-single-page,
    .process-page {
        padding-top: 130px;
        padding-bottom: 70px;
    }

    .hero-title {
        margin-bottom: 22px;
    }

    .hero-text p {
        font-size: 16px;
        line-height: 1.75;
        margin-bottom: 18px;
    }

    .hero-quote {
        font-size: 20px;
        line-height: 1.6;
        margin-top: 28px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .theme-btn {
        width: 100%;
    }

    .hero-image {
        min-height: 420px;
    }

    .site-header__brand .custom-logo {
        max-height: 38px;
    }

    .site-header__logo-text {
        font-size: 22px;
    }

    .mobile-navigation .mobile-menu li a {
        font-size: 18px;
        padding: 16px 0;
    }

    .theme-btn--mobile {
        min-height: 54px;
        font-size: 10px;
        letter-spacing: 0.09em;
    }

    .gallery-header,
    .courses-header,
    .contact-header,
    .exhibitions-header,
    .process-header {
        margin-bottom: 28px;
    }

    .gallery-filters {
        gap: 14px 20px;
        padding-bottom: 20px;
    }

    .gallery-filter {
        font-size: 12px;
        padding-bottom: 10px;
    }

    .gallery-list {
        gap: 24px;
        margin-top: 32px;
    }

    .gallery-card__media,
    .gallery-card__track {
        min-height: 360px;
    }

    .gallery-card__content {
        padding: 24px 20px 22px;
    }

    .gallery-card__title {
        font-size: 34px;
        margin-bottom: 16px;
    }

    .gallery-card__text p {
        font-size: 16px;
        line-height: 1.7;
    }

    .gallery-card__buy {
        max-width: 100%;
    }

    .gallery-card__arrow {
        opacity: 1;
        width: 42px;
        height: 42px;
        font-size: 24px;
    }

    .gallery-card__zoom {
        opacity: 1;
        width: 38px;
        height: 38px;
        font-size: 22px;
    }

    .gallery-card__dots {
        opacity: 1;
    }

    .gallery-order-popup__dialog,
    .course-popup__dialog,
    .gift-popup__dialog {
        width: calc(100% - 24px);
        margin-top: 20px;
        padding: 30px 18px 22px;
    }

    .gallery-order-popup__title,
    .course-popup__title,
    .gift-popup__title {
        font-size: 28px;
    }

    .gallery-lightbox__dialog,
    .exhibition-lightbox__dialog {
        width: 100%;
        height: 100%;
        margin: 0;
    }

    .course-card__media {
        min-height: 260px;
        padding: 16px;
    }

    .course-card__image-wrap {
        min-height: 220px;
    }

    .course-card__media img {
        max-height: 320px;
    }

    .course-card__content {
        padding: 22px 20px 20px;
    }

    .course-card__title {
        font-size: 28px;
    }

    .gallery-single__track,
    .gallery-single__slide img,
    .gallery-single__placeholder {
        min-height: 380px;
    }

    .gallery-single__title,
    .course-single__title {
        font-size: 34px;
    }

    .gallery-single__text p,
    .course-single__lead,
    .course-single__section p,
    .course-single__section li,
    .course-single__note {
        font-size: 16px;
        line-height: 1.75;
    }

    .gallery-single__button,
    .course-single__button {
        width: 100%;
        min-width: 0;
    }

    .contact-form-wrap,
    .contact-info {
        padding: 24px 20px 20px;
    }

    .contact-block-title {
        font-size: 28px;
    }

    .contact-side {
        gap: 18px;
    }

    .contact-map-card {
        padding: 20px;
        min-height: 260px;
    }

    .contact-map {
        min-height: 220px;
    }

    .exhibition-card__title {
        font-size: 28px;
    }

    .exhibition-card__placeholder {
        min-height: 320px;
    }

    .exhibition-card__zoom {
        width: 38px;
        height: 38px;
        font-size: 24px;
        top: 14px;
        right: 14px;
    }

    .exhibition-card__meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .exhibition-card__meta-row strong {
        text-align: left;
    }

    .exhibition-lightbox__nav {
        width: 46px;
        height: 46px;
        font-size: 28px;
    }

    .process-item {
        padding-bottom: 28px;
        margin-bottom: 28px;
    }

    .process-item__title {
        margin-bottom: 14px;
        font-size: 24px;
    }

    .site-footer {
        margin-top: 70px;
        padding-top: 34px;
    }

    .site-footer__columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .site-footer__logo-text {
        font-size: 24px;
    }
}

/* =========================
   PROCESS PAGE CLEAN
========================= */

.process-page {
    padding-top: 120px;
    padding-bottom: 100px;
}

.process-header {
    margin-bottom: 42px;
}

.process-title {
    margin: 0;
    font-size: clamp(38px, 6vw, 42px);
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #111111;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 28px;
}

.process-item {
    display: flex;
    flex-direction: column;
    padding: 0 0 24px;
    margin: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    background: transparent;
}

.process-item.is-hidden {
    display: none;
}

.process-item__title {
    display: block;
    margin: 0 0 14px;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.25;
    font-weight: 700;
    color: #111111;
}

.process-item__media {
    display: block;
    width: 100%;
    background: #e7ebe8;
    overflow: hidden;
}

.process-item__video {
    display: block;
    width: 100%;
}

.process-item__video video,
.process-item__video iframe {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    border: 0;
    background: #000;
}

.process-item__placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #dde3df;
}

.process-more {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.process-empty {
    margin: 0;
    font-size: 18px;
    color: #5f6764;
}

@media (max-width: 1100px) {
    .process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .process-page {
        padding-top: 130px;
        padding-bottom: 70px;
    }

    .process-header {
        margin-bottom: 28px;
    }

    .process-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-item {
        padding-bottom: 20px;
    }

    .process-item__title {
        margin-bottom: 12px;
        font-size: 22px;
    }
}