:root {
    --hk-red: #df1f2d;
    --hk-red-dark: #bd1420;
    --hk-black: #15171b;
    --hk-text: #202226;
    --hk-muted: #6f7278;
    --hk-line: #e4e5e8;
    --hk-surface: #f5f6f8;
    --hk-container: 1400px;
    --hk-layer-menu: 10000;
    --hk-layer-header: 10001;
}

html {
    scroll-behavior: smooth;
}

body.hk-site {
    min-width: 320px;
    background: #fff;
    color: var(--hk-text);
    font-family: "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
    line-height: 1.6;
}

html.is-menu-open,
body.hk-site.is-menu-open {
    overflow: hidden;
}

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

.hk-site a {
    color: inherit;
}

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

.hk-site button,
.hk-site input,
.hk-site select {
    font: inherit;
}

.hk-site #wrap {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #fff;
}

.hk-site #header,
.hk-site #content,
.hk-site #footer {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background: transparent;
    text-align: left;
    line-height: inherit;
}

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

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.hk-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: var(--hk-layer-header);
    height: 110px !important;
    color: #fff;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, height 0.25s ease;
}

.hk-site #header.hk-header.in,
.hk-site #header.hk-header.is-fixed {
    position: fixed;
    height: 82px !important;
    background: rgba(19, 21, 25, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(12px);
}

.hk-header--sub {
    background: var(--hk-black) !important;
}

.hk-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 80px), var(--hk-container));
    height: 100%;
    margin: 0 auto;
}

.hk-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    width: 180px;
    color: #fff;
}

.hk-logo__image {
    display: block;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.hk-gnb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(34px, 4.5vw, 86px);
    margin-left: auto;
    margin-right: clamp(38px, 6vw, 110px);
}

.hk-gnb a {
    position: relative;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

.hk-gnb a::after {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--hk-red);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.hk-gnb a:hover,
.hk-gnb a:focus-visible,
.hk-gnb a.is-active {
    color: var(--hk-red);
}

.hk-gnb a:hover::after,
.hk-gnb a:focus-visible::after,
.hk-gnb a.is-active::after {
    transform: scaleX(1);
}

.hk-header__actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.hk-catalog-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    background: var(--hk-red);
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hk-catalog-link:hover,
.hk-catalog-link:focus-visible {
    background: var(--hk-red-dark);
    transform: translateY(-2px);
}

.hk-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 7px 4px;
    border: 0;
    background: transparent;
    color: #fff;
}

.hk-menu-toggle > span:not(.sr-only) {
    display: block;
    width: 32px;
    height: 3px;
    margin: 3px 0;
    border-radius: 3px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hk-menu-toggle.is-active > span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hk-menu-toggle.is-active > span:nth-child(2) {
    opacity: 0;
}

.hk-menu-toggle.is-active > span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.hk-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: var(--hk-layer-menu);
    display: flex;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    padding: 120px 30px 40px;
    overflow-y: auto;
    background: rgba(18, 20, 24, 0.98);
    opacity: 0;
    overscroll-behavior: contain;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.hk-mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.hk-mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
}

.hk-mobile-menu__inner a {
    color: #fff;
    font-size: clamp(24px, 6vw, 42px);
    font-weight: 700;
}

.hk-mobile-menu__inner .hk-mobile-menu__catalog {
    margin-top: 20px;
    padding: 12px 28px;
    border-radius: 999px;
    background: var(--hk-red);
    font-size: 17px;
}

.hk-sub-hero {
    display: flex;
    align-items: center;
    min-height: 500px;
    padding-top: 100px;
    background:
        radial-gradient(circle at 50% 130%, rgba(74, 77, 86, 0.32), transparent 45%),
        var(--hk-black);
    color: #fff;
    text-align: center;
}

.hk-sub-hero p {
    margin-bottom: 8px;
    color: var(--hk-red);
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.hk-sub-hero h1 {
    font-size: clamp(50px, 5vw, 76px);
    line-height: 1.15;
    letter-spacing: -0.06em;
}

.hk-sub-hero span {
    display: block;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
}

.hk-sub-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(34px, 6vw, 86px);
    min-height: 72px;
    border-bottom: 1px solid var(--hk-line);
    background: #f7f7f8;
}

.hk-sub-nav a {
    position: relative;
    padding: 23px 6px;
    color: #24262a;
    font-size: 17px;
    font-weight: 700;
}

.hk-sub-nav a.is-active,
.hk-sub-nav a:hover,
.hk-sub-nav a:focus-visible {
    color: var(--hk-red);
}

.hk-sub-nav a.is-active::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    content: "";
    background: var(--hk-red);
}

.hk-page-heading p,
.hk-section-heading > p {
    margin-bottom: 14px;
    color: var(--hk-red);
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.hk-page-heading h2 {
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.2;
    letter-spacing: -0.06em;
}

.hk-outline-button,
.hk-light-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 190px;
    height: 58px;
    padding: 0 28px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.hk-outline-button:hover,
.hk-outline-button:focus-visible {
    background: #fff;
    color: var(--hk-black);
    transform: translateY(-2px);
}

.hk-light-button {
    min-width: 162px;
    height: 52px;
    border-color: #fff;
    background: #fff;
    color: #202226 !important;
}

.hk-light-button:hover,
.hk-light-button:focus-visible {
    background: transparent;
    color: #fff !important;
    transform: translateY(-2px);
}

.hk-footer {
    position: relative;
    padding: 82px 0 74px !important;
    background: #17191d !important;
    color: #74777e;
}

.hk-footer__inner {
    display: flex;
    justify-content: space-between;
    width: min(calc(100% - 80px), var(--hk-container));
    margin: 0 auto;
}

.hk-logo--footer {
    width: 310px;
    margin-bottom: 34px;
}

.hk-logo--footer .hk-logo__image {
    filter: none;
}

.hk-footer address {
    font-style: normal;
    font-size: 16px;
    line-height: 1.9;
}

.hk-footer address p {
    margin: 0;
}

.hk-footer address strong {
    color: #a7a9ae;
}

.hk-footer address span::before {
    margin: 0 10px;
    content: "|";
    color: #4b4e54;
}

.hk-footer address a {
    color: inherit;
}

.hk-footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 310px;
    padding-top: 10px;
}

.hk-footer__contact > strong {
    color: #f1f1f2;
    font-size: 18px;
}

.hk-footer__contact > a {
    margin: 8px 0 4px;
    color: var(--hk-red);
    font-family: Arial, sans-serif;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    /*letter-spacing: -0.03em;*/
}

.hk-footer__contact p {
    font-size: 14px;
}

.hk-footer__contact small {
    margin-top: 20px;
    font-size: 13px;
}

.hk-top-button {
    position: fixed;
    right: 40px;
    bottom: 34px;
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border: 0;
    border-radius: 50%;
    background: var(--hk-red);
    color: #fff;
    box-shadow: 0 12px 24px rgba(223, 31, 45, 0.25);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.hk-top-button.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hk-top-button span {
    font-size: 30px;
    line-height: 0.8;
}

.hk-top-button strong {
    margin-top: 5px;
    font-size: 12px;
}

@media (max-width: 1200px) {
    .hk-gnb {
        gap: 30px;
        margin-right: 34px;
    }

    .hk-gnb a {
        font-size: 16px;
    }

    .hk-catalog-link {
        min-width: 116px;
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {
    .hk-container,
    .hk-footer__inner {
        width: min(calc(100% - 48px), var(--hk-container));
    }

    .hk-header__inner {
        width: calc(100% - 48px);
    }

    .hk-gnb,
    .hk-catalog-link {
        display: none;
    }

    .hk-footer__inner {
        gap: 70px;
    }
}

@media (max-width: 760px) {
    .hk-container,
    .hk-footer__inner {
        width: calc(100% - 40px);
    }

    .hk-header {
        height: 72px !important;
    }

    .hk-header__inner {
        width: calc(100% - 36px);
    }

    .hk-logo {
        width: 140px;
    }

    .hk-header__actions {
        gap: 0;
    }

    .hk-menu-toggle {
        width: 38px;
    }

    .hk-menu-toggle > span:not(.sr-only) {
        width: 29px;
        height: 2px;
    }

    .hk-sub-hero {
        min-height: 390px;
        padding-top: 82px;
    }

    .hk-sub-hero p {
        font-size: 12px;
    }

    .hk-sub-hero h1 {
        font-size: 46px;
    }

    .hk-sub-hero span {
        max-width: 300px;
        margin: 12px auto 0;
        font-size: 14px;
    }

    .hk-sub-nav {
        justify-content: flex-start;
        gap: 0;
        min-height: 62px;
        padding: 0 14px;
        overflow-x: auto;
    }

    .hk-sub-nav a {
        flex: 0 0 auto;
        padding: 19px 16px;
        font-size: 14px;
    }

    .hk-footer {
        padding: 62px 0 50px !important;
    }

    .hk-footer__inner {
        flex-direction: column;
        gap: 44px;
    }

    .hk-logo--footer {
        width: 260px;
    }

    .hk-footer address span {
        display: block;
    }

    .hk-footer address span::before {
        display: none;
    }

    .hk-footer__contact {
        min-width: 0;
    }

    .hk-footer__contact > a {
        font-size: 38px;
    }

    .hk-footer__contact small {
        margin-top: 40px;
    }

    .hk-top-button {
        right: 18px;
        bottom: 18px;
        width: 62px;
        height: 62px;
    }

    .hk-top-button span {
        font-size: 23px;
    }

    .hk-top-button strong {
        font-size: 10px;
    }
}
