:root {
    --mkik-orange: #ff5a1f;
    --mkik-orange-soft: #f7cdbd;
    --mkik-dark: #14213d;
    --mkik-text: #25304f;
    --mkik-muted: #6f7890;
    --mkik-border: #e8edf4;
    --mkik-soft-bg: #fff8f4;
    --mkik-white: #ffffff;
    --mkik-container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--mkik-text);
    background: var(--mkik-white);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}


/* Header */

.mkik-header {
    background: var(--mkik-white);
    position: relative;
    z-index: 50;
}

.mkik-header__top {
    background: #ffffff;
    color: var(--mkik-dark);
    font-size: 14px;
    border-bottom: 1px solid rgba(232, 237, 244, 0.9);
}

.mkik-header__top-inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.mkik-header__contacts {
    display: flex;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
}

.mkik-header__contacts a,
.mkik-header__contacts span {
    color: var(--mkik-dark);
    text-decoration: none;
    font-weight: 600;
}

.mkik-header__contacts a:hover {
    color: var(--mkik-orange);
}

.mkik-header__langs {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mkik-header__langs a {
    color: var(--mkik-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.mkik-header__langs a.is-active {
    color: var(--mkik-orange);
}

.mkik-header__main {
    background: #ffffff;
}

.mkik-header__main-inner {
    min-height: 108px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.mkik-header__logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.mkik-header__logo img {
    max-height: 78px;
    width: auto;
}

.mkik-header__site-name {
    color: var(--mkik-dark);
    font-size: 22px;
    font-weight: 800;
}

.mkik-header__nav {
    margin-left: auto;
}

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

.mkik-menu li {
    position: relative;
}

.mkik-menu a {
    color: var(--mkik-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
}

.mkik-menu a:hover,
.mkik-menu .current-menu-item > a,
.mkik-menu .current-menu-parent > a {
    color: var(--mkik-orange);
}

.mkik-menu .sub-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 18px);
    z-index: 20;
    min-width: 230px;
    background: var(--mkik-white);
    border: 1px solid var(--mkik-border);
    border-radius: 10px;
    box-shadow: 0 18px 45px rgba(20, 33, 61, 0.12);
    list-style: none;
    margin: 0;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.mkik-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mkik-menu .sub-menu a {
    display: block;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
}

.mkik-menu .sub-menu a:hover {
    background: var(--mkik-soft-bg);
}

.mkik-header__burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--mkik-border);
    border-radius: 10px;
    background: var(--mkik-white);
    cursor: pointer;
    padding: 10px;
}

.mkik-header__burger span {
    display: block;
    height: 2px;
    background: var(--mkik-dark);
    margin: 5px 0;
    border-radius: 2px;
}


/* Buttons */

.mkik-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.mkik-btn--primary {
    background: var(--mkik-orange);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(255, 90, 31, 0.22);
}

.mkik-btn--primary:hover {
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(255, 90, 31, 0.28);
}

.mkik-btn--secondary {
    background: #ffffff;
    color: var(--mkik-dark);
    border: 1px solid var(--mkik-border);
}

.mkik-btn--secondary:hover {
    color: var(--mkik-orange);
    border-color: rgba(255, 90, 31, 0.35);
}


/* Hero */

.mkik-hero {
    position: relative;
    overflow: hidden;
    padding: 20px 0 48px;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 90, 31, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #fff7f3 100%);
}

.mkik-hero__inner {
    display: grid;
    grid-template-columns: 1fr 520px;
    align-items: center;
    gap: 64px;
}

.mkik-hero__content {
    position: relative;
    z-index: 2;
}

.mkik-hero__label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 90, 31, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--mkik-orange);
    font-size: 14px;
    font-weight: 700;
}

.mkik-hero__title {
    max-width: 760px;
    margin: 0 0 22px;
    color: var(--mkik-dark);
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.mkik-hero__text {
    max-width: 590px;
    margin: 0;
    color: var(--mkik-muted);
    font-size: 19px;
    line-height: 1.65;
}

.mkik-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.mkik-hero__visual {
    position: relative;
    min-height: 540px;
}

.mkik-hero__image-wrap {
    width: 100%;
    height: 540px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(20, 33, 61, 0.16);
}

.mkik-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mkik-hero__card {
    position: absolute;
    max-width: 250px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 45px rgba(20, 33, 61, 0.14);
    backdrop-filter: blur(10px);
}

.mkik-hero__card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--mkik-dark);
    font-size: 17px;
}

.mkik-hero__card span {
    display: block;
    color: var(--mkik-muted);
    font-size: 14px;
    line-height: 1.45;
}

.mkik-hero__card--one {
    left: -34px;
    bottom: 82px;
}

.mkik-hero__card--two {
    right: -22px;
    top: 70px;
}


/* Sections after hero */

.mkik-section {
    padding: 54px 0 0;
    background: #ffffff;
}

.mkik-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.mkik-section__head--with-filters {
    margin-bottom: 20px;
}

.mkik-section__title {
    margin: 0;
    color: var(--mkik-dark);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.mkik-section__all-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--mkik-orange);
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
}

.mkik-section__all-link::after {
    content: "→";
    font-size: 24px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.mkik-section__all-link:hover::after {
    transform: translateX(4px);
}


/* Filter tabs */

.mkik-filter-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.mkik-filter-tabs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid var(--mkik-border);
    border-radius: 10px;
    background: #ffffff;
    color: var(--mkik-dark);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.mkik-filter-tabs a.is-active,
.mkik-filter-tabs a:hover {
    border-color: rgba(255, 90, 31, 0.35);
    color: var(--mkik-orange);
    background: var(--mkik-soft-bg);
}


/* Event cards */

.mkik-event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    align-items: stretch;
}

.mkik-event-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--mkik-border);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(20, 33, 61, 0.04);
    transition: 0.2s ease;
}

.mkik-event-card:hover,
.mkik-activity-card:hover,
.mkik-venue-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(20, 33, 61, 0.07);
}

.mkik-events-preview .mkik-event-card__image {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 100%;
    height: 205px !important;
    min-height: 205px !important;
    max-height: 205px !important;
    overflow: hidden;
    background: #f4f6fa;
    text-decoration: none;
}

.mkik-events-preview .mkik-event-card__image img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center center;
}

.mkik-event-card__date {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 2;
    width: 62px;
    min-height: 66px;
    padding: 10px 6px 9px;
    border-radius: 12px;
    background: #ffffff;
    color: var(--mkik-dark);
    text-align: center;
    box-shadow: 0 10px 22px rgba(20, 33, 61, 0.14);
}

.mkik-event-card__date strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
}

.mkik-event-card__date span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--mkik-muted);
}

.mkik-event-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 26px 24px 24px;
    background: #ffffff;
}

.mkik-event-card h3 {
    min-height: 54px;
    margin: 0 0 22px;
    color: var(--mkik-dark);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.mkik-event-card h3 a {
    color: inherit;
    text-decoration: none;
}

.mkik-event-card h3 a:hover {
    color: var(--mkik-orange);
}

.mkik-event-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 26px;
    color: #59637c;
    font-size: 14px;
    font-weight: 600;
}

.mkik-event-card__meta-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding-left: 30px;
}

.mkik-event-card__meta-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 21px;
    height: 21px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.9;
}

.mkik-event-card__meta-item--time::before {
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='8.5' stroke='%2359637C' stroke-width='2'/%3E%3Cpath d='M12 7.5V12.3L15.2 14.2' stroke='%2359637C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.mkik-event-card__meta-item--location::before {
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21C12 21 18.5 15.9 18.5 9.8C18.5 6.2 15.6 3.5 12 3.5C8.4 3.5 5.5 6.2 5.5 9.8C5.5 15.9 12 21 12 21Z' stroke='%2359637C' stroke-width='2' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='9.8' r='2.4' stroke='%2359637C' stroke-width='2'/%3E%3C/svg%3E");
}

.mkik-card-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.mkik-card-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 14px;
    border: 1px solid var(--mkik-border);
    border-radius: 999px;
    background: #ffffff;
    color: #1d2948;
    font-size: 13px;
    font-weight: 700;
}

.mkik-card-tags span:first-child {
    border-color: rgba(255, 90, 31, 0.24);
    color: var(--mkik-orange);
    background: #fffaf7;
}

.mkik-card-tags span.is-free {
    border-color: var(--mkik-orange);
    background: var(--mkik-orange);
    color: #ffffff;
}


/* Activities */

.mkik-activities-preview {
    padding-top: 88px;
}

.mkik-activity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: stretch;
}

.mkik-activity-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 380px;
    border: 1px solid var(--mkik-border);
    border-radius: 18px;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(20, 33, 61, 0.04);
    transition: 0.2s ease;
}

.mkik-activity-card:hover,
.mkik-activity-card:focus,
.mkik-activity-card:visited {
    color: inherit;
    text-decoration: none;
}

.mkik-activity-card::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -38px;
    width: 128px;
    height: 128px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='128' viewBox='0 0 128 128' fill='none'%3E%3Cpath d='M28 24L62 64L28 104' stroke='%23F7CDBD' stroke-width='14' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M72 24L106 64L72 104' stroke='%23F7CDBD' stroke-width='14' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    opacity: 0.14;
    pointer-events: none;
}

.mkik-activity-card__image {
    height: 170px;
    margin: 12px 12px 0;
    overflow: hidden;
    border-radius: 14px;
    background: #f4f6fa;
}

.mkik-activity-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mkik-activity-card__body {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 24px 24px 26px;
}

.mkik-activity-card h3 {
    margin: 0 0 14px;
    color: var(--mkik-dark);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
}

.mkik-activity-card p {
    min-height: 72px;
    margin: 0 0 24px;
    color: #4c5872;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 500;
    text-decoration: none;
}

.mkik-activity-card__link {
    display: inline-flex;
    margin-top: auto;
    align-items: center;
    gap: 10px;
    color: var(--mkik-orange);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.mkik-activity-card__link::after {
    content: "→";
    font-size: 21px;
    line-height: 1;
}

.mkik-activity-card:hover .mkik-activity-card__link {
    gap: 14px;
}

.mkik-activity-card:hover h3,
.mkik-activity-card:hover p,
.mkik-activity-card:hover span {
    text-decoration: none;
}


/* Venues */

.mkik-venues-preview {
    padding-top: 96px;
    padding-bottom: 42px;
}

.mkik-venue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.mkik-venue-card {
    display: grid;
    grid-template-columns: 52% 48%;
    overflow: hidden;
    min-height: 190px;
    border: 1px solid var(--mkik-border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(20, 33, 61, 0.04);
    transition: 0.2s ease;
}

.mkik-venue-card__image {
    min-height: 190px;
    overflow: hidden;
    background: #f4f6fa;
}

.mkik-venue-card__image img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
}

.mkik-venue-card__body {
    padding: 30px 28px;
}

.mkik-venue-card h3 {
    margin: 0 0 14px;
    color: var(--mkik-dark);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

.mkik-venue-card p {
    margin: 0;
    color: #4c5872;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 500;
}

.mkik-venue-card__address {
    position: relative;
    margin-bottom: 18px !important;
    padding-left: 30px;
    color: #59637c !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.mkik-venue-card__address::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 21px;
    height: 21px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.9;
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21C12 21 18.5 15.9 18.5 9.8C18.5 6.2 15.6 3.5 12 3.5C8.4 3.5 5.5 6.2 5.5 9.8C5.5 15.9 12 21 12 21Z' stroke='%2359637C' stroke-width='2' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='9.8' r='2.4' stroke='%2359637C' stroke-width='2'/%3E%3C/svg%3E");
}


/* Footer */

.mkik-footer {
    margin-top: 0;
    background: #ffffff;
    color: var(--mkik-dark);
    border-top: 1px solid rgba(20, 33, 61, 0.08);
    position: relative;
    overflow: hidden;
}

.mkik-footer::before {
    border-top: 0;
}

.site-footer,
.site-info,
.footer-widgets,
.footer-widgets-container {
    background: #ffffff;
}

.mkik-footer::before,
.mkik-footer::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 150 150' fill='none'%3E%3Cpath d='M30 28L72 75L30 122' stroke='%23F7B9A1' stroke-width='18' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M80 28L122 75L80 122' stroke='%23F7B9A1' stroke-width='18' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    opacity: 0.72;
    pointer-events: none;
}

.mkik-footer::before {
    left: -58px;
    bottom: 36px;
}

.mkik-footer::after {
    right: 42px;
    top: 58px;
}

.mkik-footer__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1.25fr 1.15fr;
    gap: 86px;
    padding: 54px 72px 52px;
}

.mkik-footer a {
    color: var(--mkik-dark);
    text-decoration: none;
}

.mkik-footer a:hover {
    color: var(--mkik-orange);
}

.mkik-footer__logo {
    margin-bottom: 26px;
}

.mkik-footer__logo img {
    max-width: 190px;
    height: auto;
}

.mkik-footer__brand p {
    max-width: 295px;
    margin: 0 0 32px;
    color: #4c5872;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

.mkik-footer__socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mkik-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--mkik-border);
    border-radius: 50%;
    background: #ffffff;
    color: var(--mkik-dark);
    box-shadow: 0 8px 18px rgba(20, 33, 61, 0.04);
    transition: 0.2s ease;
}

.mkik-footer__socials a:hover {
    border-color: rgba(255, 90, 31, 0.35);
    color: var(--mkik-orange);
    transform: translateY(-1px);
}

.mkik-footer__socials svg {
    width: 22px;
    height: 22px;
    display: block;
}

.mkik-footer__socials svg path {
    fill: currentColor;
}

.mkik-footer__socials svg rect,
.mkik-footer__socials svg circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
}

.mkik-footer h3 {
    margin: 0 0 22px;
    color: var(--mkik-dark);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
}

.mkik-footer__contacts ul {
    display: grid;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mkik-footer__contacts li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 14px;
    align-items: flex-start;
    color: #1d2948;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
}

.mkik-footer__contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    min-width: 26px;
    height: 26px;
    color: var(--mkik-dark);
}

.mkik-footer__contact-icon svg {
    width: 21px;
    height: 21px;
    display: block;
}

.mkik-footer__contact-icon svg path,
.mkik-footer__contact-icon svg circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mkik-footer__newsletter p {
    max-width: 310px;
    margin: 0 0 26px;
    color: #4c5872;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 500;
}

.mkik-footer__form {
    max-width: 330px;
}

.mkik-footer__form input {
    display: block;
    width: 100%;
    height: 54px;
    margin-bottom: 16px;
    padding: 0 18px;
    border: 1px solid var(--mkik-border);
    border-radius: 10px;
    background: #ffffff;
    color: var(--mkik-dark);
    font-size: 15px;
    font-weight: 500;
    outline: none;
}

.mkik-footer__form input::placeholder {
    color: #9aa4b8;
}

.mkik-footer__form input:focus {
    border-color: rgba(255, 90, 31, 0.45);
    box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.08);
}

.mkik-footer__form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 13px 24px;
    border: 0;
    border-radius: 10px;
    background: var(--mkik-orange);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(255, 90, 31, 0.22);
    transition: 0.2s ease;
}

.mkik-footer__form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(255, 90, 31, 0.28);
}


/* Responsive */

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

    .mkik-hero__visual {
        min-height: auto;
    }

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

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

    .mkik-venue-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .mkik-header__top-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 12px 0;
        gap: 10px;
    }

    .mkik-header__contacts {
        gap: 10px 16px;
    }

    .mkik-header__main-inner {
        min-height: 86px;
    }

    .mkik-header__nav {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 100%;
        background: var(--mkik-white);
        border: 1px solid var(--mkik-border);
        border-radius: 18px;
        box-shadow: 0 18px 45px rgba(20, 33, 61, 0.14);
        padding: 18px;
    }

    .mkik-header__nav.is-open {
        display: block;
    }

    .mkik-menu {
        display: block;
    }

    .mkik-menu li {
        margin-bottom: 12px;
    }

    .mkik-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        padding: 8px 0 0 14px;
    }

    .mkik-header__burger {
        display: block;
    }

    .mkik-footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 42px 0 38px;
    }
}

@media (max-width: 720px) {
    .mkik-container {
        width: min(var(--mkik-container), calc(100% - 28px));
    }

    .mkik-hero {
        padding: 42px 0 56px;
    }

    .mkik-hero__title {
        font-size: 40px;
    }

    .mkik-hero__text {
        font-size: 16px;
    }

    .mkik-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .mkik-btn {
        width: 100%;
    }

    .mkik-hero__image-wrap {
        height: 340px;
        border-radius: 24px;
    }

    .mkik-hero__card {
        position: static;
        max-width: none;
        margin-top: 14px;
    }

    .mkik-section {
        padding-top: 38px;
    }

    .mkik-section__head {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .mkik-section__title {
        font-size: 26px;
    }

    .mkik-filter-tabs {
        gap: 10px;
        margin-bottom: 24px;
    }

    .mkik-filter-tabs a {
        min-width: auto;
        min-height: 39px;
        padding: 9px 14px;
        font-size: 13px;
    }

    .mkik-event-grid,
    .mkik-activity-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mkik-events-preview .mkik-event-card__image {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
    }

    .mkik-activity-card {
        min-height: auto;
    }

    .mkik-venue-card {
        grid-template-columns: 1fr;
    }

    .mkik-venue-card__image,
    .mkik-venue-card__image img {
        min-height: 220px;
    }

    .mkik-footer::before,
    .mkik-footer::after {
        display: none;
    }

    .mkik-footer__inner {
        padding: 34px 0 30px;
    }

    .mkik-footer__form {
        max-width: none;
    }
}

.mkik-header {
    position: sticky;
    top: 0;
    z-index: 999;
    transform: translateY(0);
    transition:
        transform 0.32s ease,
        box-shadow 0.32s ease,
        background-color 0.32s ease;
    will-change: transform;
}

.mkik-header.is-hidden {
    transform: translateY(-100%);
}

.mkik-header.is-visible {
    transform: translateY(0);
}

.mkik-header.is-scrolled {
    box-shadow: 0 14px 34px rgba(20, 33, 61, 0.08);
}


/* ================================
   Contact Form 7 center popup
================================ */

body.mkik-cf7-popup-open {
    overflow: hidden;
}

.mkik-cf7-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.mkik-cf7-popup.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.mkik-cf7-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 23, 51, 0.48);
    backdrop-filter: blur(6px);
}

.mkik-cf7-popup__box {
    position: relative;
    z-index: 2;
    width: min(100%, 440px);
    padding: 42px 34px 34px;
    border-radius: 24px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 28px 90px rgba(7, 23, 51, 0.28);
    transform: translateY(14px) scale(0.96);
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.mkik-cf7-popup.is-visible .mkik-cf7-popup__box {
    transform: translateY(0) scale(1);
}

.mkik-cf7-popup__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #f4f6fa;
    color: #59637c;
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.mkik-cf7-popup__close:hover {
    background: #fff0ea;
    color: var(--mkik-orange);
}

.mkik-cf7-popup__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: rgba(22, 138, 58, 0.1);
}

.mkik-cf7-popup__icon span {
    position: relative;
    display: block;
    width: 34px;
    height: 20px;
    border-left: 5px solid #168a3a;
    border-bottom: 5px solid #168a3a;
    transform: rotate(-45deg) translate(2px, -2px);
}

.mkik-cf7-popup__box h3 {
    margin: 0 0 12px;
    color: var(--mkik-dark);
    font-size: 32px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.mkik-cf7-popup__box p {
    margin: 0;
    color: #59637c;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
}

.mkik-cf7-popup__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 48px;
    margin-top: 26px;
    padding: 12px 24px;
    border: 0;
    border-radius: 12px;
    background: var(--mkik-orange);
    color: #ffffff;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(255, 90, 31, 0.22);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.mkik-cf7-popup__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(255, 90, 31, 0.28);
}

/* Hide default CF7 success message because popup replaces it */
.wpcf7 form.sent .wpcf7-response-output {
    display: none !important;
}

@media (max-width: 560px) {
    .mkik-cf7-popup {
        padding: 18px;
    }

    .mkik-cf7-popup__box {
        padding: 38px 24px 28px;
        border-radius: 20px;
    }

    .mkik-cf7-popup__box h3 {
        font-size: 28px;
    }

    .mkik-cf7-popup__box p {
        font-size: 15px;
    }

    .mkik-cf7-popup__button {
        width: 100%;
    }
}


/* ================================
   Footer newsletter / Smaily shortcode
================================ */

.mkik-footer__newsletter {
    max-width: 320px;
}

.mkik-footer__newsletter h3 {
    margin: 0 0 18px;
    color: var(--mkik-dark);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.mkik-footer__newsletter-form {
    width: 100%;
}

.mkik-footer__newsletter-form form,
.mkik-footer__newsletter-form .smaily-connect-newsletter-form,
.mkik-footer__newsletter-form .smaily-connect-form {
    display: grid;
    gap: 14px;
    width: 100%;
    margin: 0;
}

.mkik-footer__newsletter-form p {
    margin: 0;
}

.mkik-footer__newsletter-form label {
    display: none;
}

.mkik-footer__newsletter-form input[type="email"],
.mkik-footer__newsletter-form input[type="text"] {
    width: 100%;
    height: 54px;
    padding: 0 18px;
    border: 1px solid #e4e8f0;
    border-radius: 10px;
    background: #ffffff;
    color: var(--mkik-dark);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    box-sizing: border-box;
    box-shadow: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.mkik-footer__newsletter-form input[type="email"]::placeholder,
.mkik-footer__newsletter-form input[type="text"]::placeholder {
    color: #b3b9c7;
    opacity: 1;
}

.mkik-footer__newsletter-form input[type="email"]:focus,
.mkik-footer__newsletter-form input[type="text"]:focus {
    border-color: rgba(255, 90, 31, 0.55);
    box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.10);
    background: #ffffff;
}

.mkik-footer__newsletter-form input[type="submit"],
.mkik-footer__newsletter-form button,
.mkik-footer__newsletter-form button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 14px 22px;
    border: 0;
    border-radius: 10px;
    background: var(--mkik-orange);
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(255, 90, 31, 0.22);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.mkik-footer__newsletter-form input[type="submit"]:hover,
.mkik-footer__newsletter-form button:hover,
.mkik-footer__newsletter-form button[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(255, 90, 31, 0.28);
}

.mkik-footer__newsletter-form input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0 8px 0 0;
    accent-color: var(--mkik-orange);
}

.mkik-footer__newsletter-form .error,
.mkik-footer__newsletter-form .success,
.mkik-footer__newsletter-form .message {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

@media (max-width: 640px) {
    .mkik-footer__newsletter {
        max-width: none;
    }
}


/* ================================
   Event archive ticket button
================================ */

.mkik-events-archive .mkik-event-card .mkik-btn,
.mkik-events-archive .mkik-event-card .mkik-btn--primary,
.mkik-events-archive .mkik-event-card a[href*="ticket"],
.mkik-events-archive .mkik-event-card a[href*="pilet"],
.mkik-events-archive .mkik-event-card a[href*="fienta"],
.mkik-events-archive .mkik-event-card a[href*="piletikeskus"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--mkik-orange);
    color: #ffffff;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
    box-shadow: none;
}

.mkik-events-archive .mkik-event-card .mkik-btn:hover,
.mkik-events-archive .mkik-event-card .mkik-btn--primary:hover,
.mkik-events-archive .mkik-event-card a[href*="ticket"]:hover,
.mkik-events-archive .mkik-event-card a[href*="pilet"]:hover,
.mkik-events-archive .mkik-event-card a[href*="fienta"]:hover,
.mkik-events-archive .mkik-event-card a[href*="piletikeskus"]:hover {
    transform: none;
    color: #ffffff;
    box-shadow: none;
}