:root {
    --kr-primary: #ff6900;
    --kr-ink: #1c1917;
    --kr-muted: #57534e;
    --kr-border: #d1d5db;
    --kr-soft: #f3f4f6;
    --kr-white: #fff;
    --kr-black: #000;
    --kr-radius: 12px;
    --kr-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --kr-font:
        Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
}

html {
    scroll-behavior: smooth;
}

.site-shell {
    margin: 0;
    background: #fff;
    color: var(--kr-ink);
    font-family: var(--kr-font);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-shell main {
    flex: 1;
}

.site-shell * {
    box-sizing: border-box;
}

.site-shell a {
    text-decoration: none;
}

.kr-container {
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
}

.kr-header {
    width: 100%;
    top: 0;
    z-index: 50;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        backdrop-filter 0.3s ease;
}

.kr-header--home {
    position: fixed;
    background: transparent;
}

.kr-header--solid {
    position: relative;
    background: #111827;
}

.kr-header.is-scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.kr-header__inner {
    min-height: 68px;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.kr-logo {
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
}

.kr-logo--dark {
    color: #111827;
}

.kr-nav--desktop {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kr-nav__link {
    position: relative;
    padding: 4px 12px;
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    transition: all 0.2s ease;
}

.kr-nav__link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 0;
    background: var(--kr-primary);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--kr-primary);
    transition: width 0.2s ease;
}

.kr-nav__link:hover:before,
.kr-nav__link--active:before {
    width: 20px;
}

.kr-button,
.site-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 7px 15px;
    border: 1px solid var(--kr-primary);
    border-radius: 5px;
    background: var(--kr-primary);
    color: #fff !important;
    font-family: var(--kr-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.kr-button:hover,
.site-button:hover {
    background: #e85f00;
    border-color: #e85f00;
}

.kr-button--sm {
    min-height: 38px;
}

.kr-button--block,
.site-button--block {
    width: 100%;
}

.kr-button--ghost,
.site-button--ghost {
    background: #fff;
    color: #111827 !important;
    border-color: #d1d5db;
}

.kr-menu-trigger {
    display: none;
    background: transparent;
    border: 0;
    width: 36px;
    height: 36px;
    padding: 7px;
    cursor: pointer;
}

.kr-menu-trigger span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
}

.kr-drawer {
    position: fixed;
    inset: 0;
    z-index: 80;
    pointer-events: none;
}

.kr-drawer.is-open {
    pointer-events: auto;
}

.kr-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    border: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.kr-drawer.is-open .kr-drawer__backdrop {
    opacity: 1;
}

.kr-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 92vw);
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
}

.kr-drawer.is-open .kr-drawer__panel {
    transform: translateX(0);
}

.kr-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #f3f4f6;
}

.kr-drawer__close {
    border: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.kr-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
}

.kr-drawer__link {
    display: block;
    padding: 8px 16px;
    color: #111827;
    font-size: 16px;
    border-radius: 6px;
    position: relative;
}

.kr-drawer__link:before {
    content: "";
    position: absolute;
    left: 16px;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: var(--kr-primary);
    transition: 0.2s;
}

.kr-drawer__link:hover:before,
.kr-drawer__link--active:before {
    width: 30px;
}

.kr-drawer__footer {
    margin-top: auto;
    padding: 16px;
}

.kr-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kr-hero--small {
    height: 200px;
}

.kr-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.kr-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 896px;
    text-align: center;
    color: #fff;
}

.kr-hero__content h1 {
    font-size: clamp(30px, 5vw, 60px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
}

.kr-hero--small .kr-hero__content h1 {
    font-size: 40px;
}

.kr-hero__content p {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    opacity: 0.9;
    margin: 0 0 32px;
}

.kr-searchbar {
    width: 100%;
    display: flex;
    justify-content: center;
}

.kr-searchbar__card {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
    width: min(100%, 760px);
}

.kr-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.kr-field span,
.kr-field label {
    font-size: 12px;
    color: #888;
    font-weight: 400;
}

.kr-input,
.kr-select,
.kr-textarea,
.site-form input,
.site-form select,
.site-form textarea {
    width: 100%;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    background: #fff;
    color: #111827;
    font-family: var(--kr-font);
    font-size: 14px;
    outline: none;
    transition:
        border 0.2s,
        box-shadow 0.2s;
}

.kr-textarea,
.site-form textarea {
    min-height: 110px;
    resize: vertical;
}

.kr-input:focus,
.kr-select:focus,
.kr-textarea:focus,
.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
    border-color: var(--kr-primary);
    box-shadow: 0 0 0 2px rgba(255, 105, 0, 0.1);
}

.kr-section {
    padding: 48px 0;
}

.kr-section--muted {
    background: #f3f4f6;
}

.kr-heading {
    text-align: center;
    margin-bottom: 32px;
}

.kr-heading h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: #111827;
}

.kr-heading p {
    margin: 0 auto;
    max-width: 720px;
    color: #6b7280;
    font-size: 16px;
}

.kr-grid {
    display: grid;
    gap: 24px;
}

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

.kr-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kr-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kr-grid--search {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.kr-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 0;
}

.kr-card--border {
    border: 1px solid #d1d5db;
    box-shadow: none;
    padding: 16px;
    gap: 16px;
}

.kr-card__media {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.kr-card--hotel .kr-card__media,
.kr-card--restaurant .kr-card__media {
    height: 208px;
}

.kr-card__media--short {
    height: 192px;
    border-radius: 8px;
}

.kr-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.kr-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #292524;
    margin: 0 0 8px;
}

.kr-card p {
    font-size: 14px;
    color: #57534e;
    line-height: 1.55;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kr-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #d1d5db;
    font-size: 14px;
    color: #78716c;
}

.kr-card__price {
    font-weight: 600;
    color: #1c1917;
}

.kr-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.kr-badge,
.site-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-radius: 999px;
    background: #e5e7eb;
    color: #1f2937;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
}

.kr-badge--overlay {
    background: rgba(255, 255, 255, 0.95);
}

.kr-badge--success {
    background: #f0fdf4;
    color: #15803d;
}

.kr-card__overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kr-feature-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #78716c;
    font-size: 14px;
    margin-bottom: 16px;
}

.kr-check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 16px 0;
    color: #4b5563;
    font-size: 14px;
}

.kr-check-list span:before {
    content: "✓";
    color: #22c55e;
    font-weight: 800;
    margin-right: 6px;
}

.kr-destination-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--kr-shadow);
    height: 100%;
    overflow: hidden;
}

.kr-destination-card__media {
    height: 288px;
    background-size: cover;
    background-position: center;
}

.kr-destination-card__cta {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
    color: #1c1917;
    font-weight: 600;
}

.kr-destination-card__arrow {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--kr-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    font-size: 20px;
    flex: 0 0 auto;
}

.kr-vehicle-card {
    display: flex;
    overflow: hidden;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.kr-vehicle-card--vertical {
    flex-direction: column;
}

.kr-vehicle-card__media {
    flex: 0 0 45%;
    min-height: 260px;
    background-size: cover;
    background-position: center;
    border-right: 1px solid #e5e7eb;
}

.kr-vehicle-card--vertical .kr-vehicle-card__media {
    height: 240px;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #e5e7eb;
    flex: auto;
}

.kr-vehicle-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.kr-vehicle-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #292524;
    margin: 8px 0;
}

.kr-vehicle-card p {
    font-size: 14px;
    color: #4b5563;
    margin: 0 0 12px;
}

.kr-vehicle-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.kr-vehicle-card__features span {
    background: #e5e7eb;
    color: #292524;
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 12px;
}

.kr-vehicle-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.kr-search-layout {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 24px;
}

.kr-filter {
    flex: 0 0 300px;
    position: sticky;
    top: 24px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kr-filter h3 {
    font-size: 14px;
    color: #374151;
    font-weight: 600;
    margin: 0 0 6px;
}

.kr-filter__group+.kr-filter__group {
    margin-top: 20px;
}

.kr-filter__options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kr-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    font-size: 14px;
}

.kr-checkbox input {
    accent-color: var(--kr-primary);
    width: 16px;
    height: 16px;
}

.kr-search-results {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kr-tabs {
    display: flex;
    gap: 12px;
    overflow: auto;
    padding-bottom: 2px;
}

.kr-tabs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 7px 15px;
    border: 1px solid var(--kr-primary);
    border-radius: 5px;
    background: var(--kr-primary);
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
}

.kr-tabs a:not(.is-active) {
    background: transparent !important;
    color: #111827 !important;
    border-color: #d1d5db !important;
}

.kr-tabs a:not(.is-active):hover {
    background: var(--kr-primary) !important;
    color: #fff !important;
    border-color: var(--kr-primary) !important;
}

.kr-pagination {
    margin-top: 24px;
}

.kr-pagination-ui {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.kr-pagination-ui__list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.kr-pagination-ui__page,
.kr-pagination-ui__arrow,
.kr-pagination-ui__ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    color: #111827;
    font-size: 14px;
    line-height: 1;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
    text-decoration: none;
}

.kr-pagination-ui__page:hover,
.kr-pagination-ui__arrow:hover {
    color: var(--kr-primary);
}

.kr-pagination-ui__arrow {
    min-width: 24px;
    font-size: 20px;
    line-height: 1;
}

.kr-pagination-ui__page.is-active {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid var(--kr-primary);
    background: #fff;
    color: var(--kr-primary);
    font-weight: 600;
}

.kr-pagination-ui__arrow.is-disabled,
.kr-pagination-ui__ellipsis {
    color: #c4c4c4;
}

.kr-pagination-ui__arrow.is-disabled {
    pointer-events: none;
}

.kr-footer {
    margin-top: 64px;
    padding: 44px 0 52px;
    background: #020817;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.kr-footer__inner {
    display: grid;
    justify-items: center;
    gap: 18px;
    text-align: center;
}

.kr-footer__brand {
    color: #fff;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}

.kr-footer__links,
.kr-footer__socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    max-width: 760px;
}

.kr-footer__links a,
.kr-footer__socials a {
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.kr-footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.kr-footer__socials svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.1;
}

.kr-footer__links a:hover,
.kr-footer__socials a:hover {
    color: #fff;
}

.kr-footer__bottom {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 15px;
    line-height: 1.7;
}

.kr-footer__bottom strong {
    color: var(--kr-primary);
}

@media (max-width: 640px) {
    .kr-pagination-ui {
        justify-content: center;
    }

    .kr-footer {
        margin-top: 48px;
        padding: 34px 0 40px;
    }

    .kr-footer__brand {
        font-size: 28px;
    }

    .kr-footer__links,
    .kr-footer__socials {
        gap: 8px 14px;
    }

    .kr-footer__links a,
    .kr-footer__socials a,
    .kr-footer__bottom {
        font-size: 14px;
    }

    .kr-footer__socials a {
        width: 40px;
        height: 40px;
    }

    .kr-footer__socials svg {
        width: 22px;
        height: 22px;
    }
}

.kr-detail {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.kr-gallery {
    width: 100%;
    max-width: 576px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 auto;
}

.kr-gallery__main {
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--kr-shadow);
    background-size: cover;
    background-position: center;
}

.kr-gallery__thumbs {
    display: flex;
    gap: 8px;
    overflow: auto;
    padding: 8px 0;
}

.kr-gallery__thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    flex: 0 0 auto;
    border: 2px solid transparent;
}

.kr-gallery__thumb:first-child {
    border-color: #3b82f6;
}

.kr-detail__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
}

.kr-detail__title {
    text-align: left;
    margin-bottom: 0;
}

.kr-detail__title h1 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}

.kr-detail__title p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

.kr-show-more {
    border: 0;
    background: transparent;
    padding: 0;
    color: #111827;
    text-decoration: underline;
    font-size: 14px;
    margin: 8px 0 24px;
    cursor: pointer;
}

.kr-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    color: #374151;
    margin-bottom: 16px;
}

.kr-service-grid span {
    font-size: 14px;
}

.kr-service-grid span:before {
    content: "✓";
    color: var(--kr-primary);
    margin-right: 8px;
    font-weight: 700;
}

.kr-info-strip {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    width: 100%;
    margin: 18px 0;
}

.kr-info-strip div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #374151;
}

.kr-info-strip strong {
    font-weight: 500;
    color: #111827;
}

.kr-price {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 12px 0;
}

.kr-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 16px;
}

.kr-chip-list span {
    background: #e5e7eb;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 14px;
}

.kr-tabs-detail {
    width: 100%;
    margin-top: 32px;
}

.kr-tabs-detail__buttons {
    display: flex;
    gap: 8px;
    overflow: auto;
    border-bottom: 1px solid #e5e7eb;
}

.kr-tabs-detail__button {
    border: 0;
    background: #f3f4f6;
    color: #111827;
    padding: 10px 14px;
    border-radius: 8px 8px 0 0;
    font-family: var(--kr-font);
    cursor: pointer;
    white-space: nowrap;
}

.kr-tabs-detail__button.is-active {
    background: var(--kr-primary);
    color: #fff;
}

.kr-tabs-detail__panel {
    display: none;
}

.kr-tabs-detail__panel.is-active {
    display: block;
}

.kr-detail-pane {
    width: 100%;
    margin-top: 20px;
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kr-detail-pane__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.kr-detail-pane__top h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.kr-detail-pane__top p {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.kr-meta-columns {
    display: flex;
    align-items: flex-start;
    gap: 64px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 20px;
}

.kr-meta-columns h3 {
    font-size: 16px;
    margin: 0 0 12px;
}

.kr-meta-columns ul {
    margin: 0;
    padding-left: 20px;
    color: #374151;
    font-size: 14px;
}

.kr-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kr-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.kr-form-grid--thirds {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kr-form .full,
.site-form__full {
    grid-column: 1/-1;
}

.kr-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 90;
    padding: 20px;
}

.kr-modal.is-open,
.site-modal.is-open {
    display: flex;
}

.kr-modal__panel,
.site-modal__panel {
    width: min(768px, 100%);
    max-height: 90vh;
    overflow: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
}

.kr-modal__header,
.site-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.kr-modal__header h3,
.site-modal__header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.kr-modal__body,
.site-modal__body {
    padding: 20px;
}

.kr-modal__close,
.site-modal__close {
    border: 0;
    background: transparent;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.kr-modal__actions,
.site-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 18px;
}

.site-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 90;
    padding: 20px;
}

.site-form--next {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.site-form__grid--thirds {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.site-form label span,
.site-form>label>span {
    font-size: 12px;
    color: #888;
}

.kr-about-layout {
    display: flex;
    gap: 24px;
    min-height: 60vh;
}

.kr-about-nav {
    display: flex;
    flex-direction: column;
    min-width: 250px;
    gap: 8px;
    margin-bottom: 32px;
}

.kr-about-nav a {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    color: #111827;
    font-size: 16px;
    transition: 0.2s;
}

.kr-about-nav a:hover,
.kr-about-nav a.is-active {
    background: var(--kr-primary);
    color: #fff;
}

.kr-prose {
    flex: 1;
    color: #374151;
    font-size: 15px;
    line-height: 1.7;
}

.kr-prose h1 {
    font-size: 32px;
    color: #111827;
    margin: 0 0 20px;
}

.kr-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
}

.kr-contact-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    color: #111827;
    margin: 0 0 24px;
}

.kr-contact-info {
    background: #f3f4f6;
}

.kr-contact-info__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    text-align: center;
}

.kr-contact-info__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #4b5563;
}

.kr-contact-info__icon {
    font-size: 38px;
    color: var(--kr-primary);
}

.kr-map {
    height: 100vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--kr-shadow);
}

.kr-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


.kr-button--arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.kr-button--arrow i {
    width: 17px;
    height: 17px;
    color: #ffffff;
    stroke: #ffffff;
    stroke-width: 2.5;
}

.empty-copy {
    color: #6b7280;
    font-size: 15px;
}

.line-clamp-2,
.line-clamp-3,
.line-clamp-4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    -webkit-line-clamp: 3;
}

.line-clamp-4 {
    -webkit-line-clamp: 4;
}

@media (max-width: 1024px) {
    .kr-grid--4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .kr-grid--3,
    .kr-grid--search {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kr-detail {
        flex-direction: column;
    }

    .kr-gallery {
        max-width: none;
    }

    .kr-search-layout {
        gap: 20px;
    }

    .kr-filter {
        flex-basis: 260px;
    }

    .kr-vehicle-card {
        flex-direction: column;
    }

    .kr-vehicle-card__media {
        height: 240px;
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid #e5e7eb;
    }
}

@media (max-width: 768px) {

    .kr-nav--desktop,
    .kr-header__actions {
        display: none;
    }

    .kr-menu-trigger {
        display: block;
    }

    .kr-grid--4,
    .kr-grid--3,
    .kr-grid--2,
    .kr-grid--search {
        grid-template-columns: 1fr;
    }

    .kr-section {
        padding: 40px 0;
    }

    .kr-searchbar__card {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
    }

    .kr-search-layout {
        flex-direction: column;
        padding: 16px;
    }

    .kr-filter {
        display: none;
    }

    .kr-hero__content h1 {
        font-size: 34px;
    }

    .kr-hero--small .kr-hero__content h1 {
        font-size: 32px;
    }

    .kr-contact-grid,
    .kr-contact-info__grid {
        grid-template-columns: 1fr;
    }

    .kr-about-layout {
        flex-direction: column;
    }

    .kr-about-nav {
        flex-direction: row;
        min-width: 0;
        overflow: auto;
    }

    .kr-form-grid,
    .site-form__grid,
    .site-form__grid--thirds {
        grid-template-columns: 1fr;
    }

    .kr-meta-columns {
        flex-direction: column;
        gap: 24px;
    }

    .kr-info-strip {
        flex-wrap: wrap;
    }

    .kr-destination-card__media {
        height: 240px;
    }
}

@media (max-width: 520px) {
    .kr-container {
        width: min(100% - 1rem, 1280px);
    }

    .kr-card__media {
        height: 220px;
    }

    .kr-vehicle-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .kr-tabs a {
        padding: 7px 12px;
    }

    .kr-contact-title {
        font-size: 30px;
    }
}