/* ==========================================================
   Hot_kotur v2.0 – Standalone CSS
   Portfolio tema pre Andrea Jaslovska
   Ziadne zavislosti na Blocksy ani inych temach.
   ========================================================== */

/* ====== CSS VARIABLES ====== */
:root {
    --hk-bg: #FFFFFF;
    --hk-bg-alt: #FAFAF8;
    --hk-bg-warm: #F6F4F0;
    --hk-ink: #1A1A1A;
    --hk-ink-mid: #555555;
    --hk-ink-light: #999999;
    --hk-ink-faint: #CCCCCC;
    --hk-border: #E8E6E2;
    --hk-border-light: #F0EEEA;
    --hk-shadow: 0 2px 20px rgba(0,0,0,.06);
    --hk-serif: 'Cormorant Garamond', Georgia, serif;
    --hk-sans: 'Montserrat', Helvetica, sans-serif;
    --hk-ease: cubic-bezier(.4, 0, .2, 1);
}

/* Dark mode */
.dark,
[data-color-mode="dark"] {
    --hk-bg: #111110;
    --hk-bg-alt: #181816;
    --hk-bg-warm: #1E1D1A;
    --hk-ink: #EDEAE4;
    --hk-ink-mid: #AAAAAA;
    --hk-ink-light: #777777;
    --hk-ink-faint: #444444;
    --hk-border: #2A2926;
    --hk-border-light: #222222;
    --hk-shadow: 0 2px 20px rgba(0,0,0,.35);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-color-mode="light"]) {
        --hk-bg: #111110;
        --hk-bg-alt: #181816;
        --hk-bg-warm: #1E1D1A;
        --hk-ink: #EDEAE4;
        --hk-ink-mid: #AAAAAA;
        --hk-ink-light: #777777;
        --hk-ink-faint: #444444;
        --hk-border: #2A2926;
        --hk-border-light: #222222;
        --hk-shadow: 0 2px 20px rgba(0,0,0,.35);
    }
}

/* ====== RESET & GLOBAL ====== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--hk-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--hk-ink);
    background-color: var(--hk-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.hk-menu-open {
    overflow: hidden;
}

body.hk-lightbox-open {
    overflow: hidden;
}

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

a {
    color: var(--hk-ink);
    text-decoration: none;
    transition: color 0.3s var(--hk-ease);
}

a:hover {
    color: var(--hk-ink-mid);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--hk-serif);
    font-weight: 300;
    line-height: 1.3;
    color: var(--hk-ink);
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    list-style: none;
}

/* ====== HEADER ====== */
.hk-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--hk-bg);
    transition: box-shadow 0.3s var(--hk-ease), background 0.3s var(--hk-ease);
}

.hk-header.hk-scrolled {
    box-shadow: var(--hk-shadow);
}

.hk-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand */
.hk-brand {
    font-family: var(--hk-serif);
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--hk-ink);
    text-decoration: none;
    transition: opacity 0.3s var(--hk-ease);
}

.hk-brand:hover {
    opacity: 0.7;
    color: var(--hk-ink);
}

.hk-brand em {
    font-style: normal;
    color: var(--hk-ink-light);
}

/* Navigation */
.hk-nav .hk-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hk-mobile-menu {
    display: none;
}

.hk-nav .hk-menu li a {
    font-family: var(--hk-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hk-ink);
    text-decoration: none;
    position: relative;
    padding: 0.3rem 0;
    transition: color 0.3s var(--hk-ease);
}

.hk-nav .hk-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s var(--hk-ease);
}

.hk-nav .hk-menu li a:hover::after,
.hk-nav .hk-menu li.current-menu-item a::after,
.hk-nav .hk-menu li.current_page_item a::after {
    width: 100%;
}

/* Home icon in menu */
.menu-icon-home > a {
    font-size: 0 !important;
}
.menu-icon-home > a::before {
    font-family: 'Font Awesome 6 Free';
    content: '\f015';
    font-weight: 900;
    font-size: 0.85rem !important;
}

/* Hamburger */
.hk-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hk-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--hk-ink);
    transition: all 0.3s var(--hk-ease);
    transform-origin: center;
}

.hk-hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

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

.hk-hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ====== MAIN ====== */
.hk-main {
    min-height: 60vh;
}

/* ====== CONTENT (pages) ====== */
.hk-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 2.5rem 4rem;
}

.hk-page-title {
    font-family: var(--hk-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0.06em;
}

.hk-entry-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--hk-ink-mid);
}

.hk-entry-content p {
    margin-bottom: 1.2rem;
}

.hk-entry-content h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin: 2rem 0 1rem;
}

.hk-entry-content h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin: 1.5rem 0 0.8rem;
}

.hk-entry-content img {
    border-radius: 1px;
    margin: 1.5rem 0;
}

/* ====== FOOTER ====== */
.hk-footer {
    border-top: 1px solid var(--hk-border);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.75rem;
    color: var(--hk-ink-light);
    letter-spacing: 0.08em;
}

.hk-admin-link {
    font-size: 0.7rem;
    color: var(--hk-ink-faint);
    text-decoration: none;
    transition: color 0.3s var(--hk-ease);
}

.hk-admin-link:hover {
    color: var(--hk-ink);
}

/* ====== HOMEPAGE ====== */
.hotkotur-home-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem 4rem;
}

.hotkotur-hero {
    padding: 2vh 0 3rem;
}

.hotkotur-hero-img {
    width: 100%;
    aspect-ratio: 16/7;
    border-radius: 2px;
    overflow: hidden;
}

.hotkotur-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s var(--hk-ease);
}

.hotkotur-hero-img:hover img {
    transform: scale(1.03);
}

.hotkotur-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.hotkotur-home-thumb {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border-radius: 1px;
    display: block;
}

.hotkotur-home-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--hk-ease);
}

.hotkotur-home-thumb:hover img {
    transform: scale(1.06);
}

.hotkotur-home-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem;
    background: linear-gradient(transparent, rgba(0,0,0,.5));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s var(--hk-ease);
}

.hotkotur-home-thumb:hover .hotkotur-home-label {
    opacity: 1;
}

/* Admin hint */
.hotkotur-admin-hint {
    text-align: center;
    padding: 3rem 1rem;
    background: var(--hk-bg-alt);
    border: 1px dashed var(--hk-border);
    border-radius: 4px;
    color: var(--hk-ink-mid);
    font-size: 0.9rem;
    margin-top: 2rem;
}

.hotkotur-admin-hint i {
    color: var(--hk-ink-light);
    margin-right: 0.3rem;
}

/* ====== ALBUM GRID (Weddings, Events, Journeys) ====== */
.hotkotur-albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0 4rem;
}

.hotkotur-album-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    text-decoration: none;
    color: inherit;
    display: block;
}

.hotkotur-album-cover {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.hotkotur-album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--hk-ease);
}

.hotkotur-album-card:hover .hotkotur-album-cover img {
    transform: scale(1.05);
}

.hotkotur-album-info {
    padding: 1.2rem 0;
}

.hotkotur-album-info h4 {
    font-family: var(--hk-serif);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin: 0;
}

.hotkotur-album-info span {
    font-size: 0.72rem;
    color: var(--hk-ink-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ====== ALBUM DETAIL (Single Wedding / Event) ====== */
.hotkotur-album-detail,
.hotkotur-journey-detail,
.hotkotur-artwork-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem 4rem;
}

.hotkotur-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hk-ink-light);
    cursor: pointer;
    margin-bottom: 2rem;
    transition: color 0.3s var(--hk-ease);
    text-decoration: none;
}

.hotkotur-back:hover {
    color: var(--hk-ink);
}

.hotkotur-album-title,
.hotkotur-journey-title,
.hotkotur-artwork-title {
    font-family: var(--hk-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: 0.06em;
}

.hotkotur-album-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--hk-ink-light);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.hotkotur-album-meta i {
    margin-right: 0.3rem;
}

.hotkotur-album-desc {
    color: var(--hk-ink-mid);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-family: var(--hk-serif);
    font-style: italic;
    font-size: 1.05rem;
}

.hotkotur-album-desc p {
    margin-bottom: 1rem;
}

/* Photo grid */
.hotkotur-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.hotkotur-photo {
    aspect-ratio: 3/2;
    overflow: hidden;
    cursor: pointer;
    border-radius: 1px;
}

.hotkotur-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--hk-ease);
}

.hotkotur-photo:hover img {
    transform: scale(1.04);
}

/* ====== ART ARCHIVE (One-pager blog) ====== */
.hotkotur-art-archive {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2.5rem 4rem;
}

.hotkotur-art-entry {
    max-width: 800px;
    margin: 0 auto 6rem;
}

.hotkotur-art-title {
    font-family: var(--hk-serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 0.6rem;
    letter-spacing: 0.06em;
}

.hotkotur-art-meta {
    font-size: 0.75rem;
    color: var(--hk-ink-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1.5rem;
}

.hotkotur-art-desc {
    font-family: var(--hk-serif);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--hk-ink-mid);
    line-height: 2;
    margin-bottom: 2rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hotkotur-art-desc p {
    margin-bottom: 1rem;
}

.hotkotur-art-img {
    overflow: hidden;
    cursor: pointer;
    border-radius: 1px;
}

.hotkotur-art-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s var(--hk-ease);
}

.hotkotur-art-entry:hover .hotkotur-art-img img {
    transform: scale(1.03);
}

/* ====== SINGLE ARTWORK ====== */
.hotkotur-artwork-header {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.hotkotur-artwork-meta {
    font-size: 0.75rem;
    color: var(--hk-ink-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.hotkotur-artwork-image {
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.hotkotur-artwork-image img {
    width: 100%;
    border-radius: 1px;
}

.hotkotur-artwork-content {
    max-width: 700px;
    margin: 0 auto;
    font-family: var(--hk-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--hk-ink-mid);
    line-height: 2;
    text-align: center;
}

/* ====== JOURNEY DETAIL (Blog style) ====== */
.hotkotur-journey-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2.5rem 4rem;
}

.hotkotur-blog-content {
    font-family: var(--hk-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--hk-ink-mid);
    line-height: 2;
    text-align: center;
    margin-bottom: 3rem;
}

.hotkotur-blog-content p {
    margin-bottom: 2rem;
}

.hotkotur-blog-photos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hotkotur-blog-photo {
    overflow: hidden;
    border-radius: 1px;
    cursor: pointer;
}

.hotkotur-blog-photo img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    transition: transform 0.6s var(--hk-ease);
}

.hotkotur-blog-photo:hover img {
    transform: scale(1.03);
}

/* ====== ABOUT PAGE ====== */
.hotkotur-about .hk-entry-content .about-bio,
.hotkotur-about .hk-entry-content p {
    font-family: var(--hk-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--hk-ink-mid);
    line-height: 2;
}

/* ====== CONTACT PAGE ====== */
.hotkotur-contact .hk-entry-content h2 {
    font-family: var(--hk-serif);
    font-weight: 300;
    line-height: 1.3;
}

/* ====== CTA BUTTONS ====== */
.hotkotur-cta .wp-block-button__link,
.wp-block-button.hotkotur-cta .wp-block-button__link {
    font-family: var(--hk-sans) !important;
    font-size: 0.72rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    padding: 0.9rem 2.2rem !important;
    border: 1px solid var(--hk-ink) !important;
    background: transparent !important;
    color: var(--hk-ink) !important;
    border-radius: 0 !important;
    transition: all 0.3s var(--hk-ease) !important;
}

.hotkotur-cta .wp-block-button__link:hover {
    background: var(--hk-ink) !important;
    color: var(--hk-bg) !important;
}

/* ====== EMPTY STATE ====== */
.hotkotur-empty {
    text-align: center;
    color: var(--hk-ink-light);
    font-style: italic;
    padding: 4rem 0;
}

/* ====== SCROLLBAR ====== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--hk-bg); }
::-webkit-scrollbar-thumb {
    background: var(--hk-ink-faint);
    border-radius: 3px;
}

/* ====== LIGHTBOX (gallery navigation) ====== */
.hk-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s var(--hk-ease);
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y pinch-zoom;
}

.hk-lightbox.is-visible {
    opacity: 1;
}

.hk-lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hk-lightbox-inner img {
    max-width: 88vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 2px;
    user-select: none;
    -webkit-user-drag: none;
}

.hk-lightbox-caption {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 1rem 0 0;
    font-family: var(--hk-serif);
    font-style: italic;
    letter-spacing: 0.04em;
    max-width: 80vw;
}

.hk-lightbox-close,
.hk-lightbox-prev,
.hk-lightbox-next {
    position: absolute;
    background: rgba(0,0,0,0.35);
    border: none;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    opacity: 0.85;
    transition: opacity 0.25s var(--hk-ease), background 0.25s var(--hk-ease);
    z-index: 2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hk-lightbox-close:hover,
.hk-lightbox-prev:hover,
.hk-lightbox-next:hover {
    opacity: 1;
    background: rgba(0,0,0,0.6);
}

.hk-lightbox-close {
    top: 1.2rem;
    right: 1.2rem;
    width: 3rem;
    height: 3rem;
    font-size: 1.6rem;
}

.hk-lightbox-prev,
.hk-lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 3.4rem;
    height: 3.4rem;
    font-size: 1.4rem;
}

.hk-lightbox-prev { left: 1.5rem; }
.hk-lightbox-next { right: 1.5rem; }

.hk-lightbox-counter {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-family: var(--hk-sans);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    pointer-events: none;
}

@media (max-width: 600px) {
    .hk-lightbox-prev,
    .hk-lightbox-next {
        width: 2.6rem;
        height: 2.6rem;
        font-size: 1.1rem;
    }
    .hk-lightbox-prev { left: 0.6rem; }
    .hk-lightbox-next { right: 0.6rem; }
    .hk-lightbox-close {
        top: 0.8rem;
        right: 0.8rem;
        width: 2.4rem;
        height: 2.4rem;
        font-size: 1.3rem;
    }
}

/* ====== ANIMATIONS ====== */
@keyframes hotkoturFadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hotkotur-art-entry,
.hotkotur-album-card,
.hotkotur-home-thumb {
    animation: hotkoturFadeInUp 0.5s var(--hk-ease) both;
}

.hotkotur-art-entry:nth-child(2) { animation-delay: 0.1s; }
.hotkotur-art-entry:nth-child(3) { animation-delay: 0.2s; }
.hotkotur-art-entry:nth-child(4) { animation-delay: 0.3s; }

.hotkotur-album-card:nth-child(2) { animation-delay: 0.1s; }
.hotkotur-album-card:nth-child(3) { animation-delay: 0.15s; }

.hotkotur-home-thumb:nth-child(2) { animation-delay: 0.05s; }
.hotkotur-home-thumb:nth-child(3) { animation-delay: 0.1s; }
.hotkotur-home-thumb:nth-child(4) { animation-delay: 0.15s; }
.hotkotur-home-thumb:nth-child(5) { animation-delay: 0.2s; }
.hotkotur-home-thumb:nth-child(6) { animation-delay: 0.25s; }
.hotkotur-home-thumb:nth-child(7) { animation-delay: 0.3s; }
.hotkotur-home-thumb:nth-child(8) { animation-delay: 0.35s; }
.hotkotur-home-thumb:nth-child(9) { animation-delay: 0.4s; }

/* IntersectionObserver animation classes */
.hk-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--hk-ease), transform 0.5s var(--hk-ease);
}

.hk-animate.hk-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .hotkotur-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hotkotur-photo-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== TABLET / LARGE PHONE (≤768px) ===== */
@media (max-width: 768px) {
    /* Header */
    .hk-header-inner {
        padding: 1.1rem 1.2rem;
    }
    .hk-hamburger {
        display: flex;
        width: 44px;
        height: 44px;
    }
    .hk-hamburger span {
        width: 24px;
        height: 2px;
    }

    /* Full-screen overlay menu (modern, centered, serif type) */
    .hk-nav {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        background: var(--hk-bg);
        padding: 0 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: none;
        transition: opacity 0.35s var(--hk-ease), visibility 0s linear 0.35s;
        z-index: 999;
        box-shadow: none;
        overflow-y: auto;
    }
    .hk-nav.is-open {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.35s var(--hk-ease), visibility 0s linear 0s;
    }
    .hk-nav .hk-menu {
        flex-direction: column;
        align-items: center;
        gap: 1.6rem;
        padding: 0;
        width: 100%;
    }
    .hk-nav .hk-menu li {
        list-style: none;
    }
    .hk-nav .hk-menu li a {
        font-family: var(--hk-serif);
        font-size: 1.6rem;
        font-weight: 400;
        letter-spacing: 0.03em;
        text-transform: none;
        color: var(--hk-ink);
        text-decoration: none;
        padding: 0.4rem 0;
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 0.35s var(--hk-ease), transform 0.35s var(--hk-ease), color 0.25s var(--hk-ease);
    }
    .hk-nav .hk-menu li a::after {
        display: none; /* underline-grow animation feels clunky on mobile */
    }
    .hk-nav.is-open .hk-menu li a {
        opacity: 1;
        transform: translateY(0);
    }
    /* Stagger entrance */
    .hk-nav.is-open .hk-menu li:nth-child(1) a { transition-delay: 0.06s; }
    .hk-nav.is-open .hk-menu li:nth-child(2) a { transition-delay: 0.10s; }
    .hk-nav.is-open .hk-menu li:nth-child(3) a { transition-delay: 0.14s; }
    .hk-nav.is-open .hk-menu li:nth-child(4) a { transition-delay: 0.18s; }
    .hk-nav.is-open .hk-menu li:nth-child(5) a { transition-delay: 0.22s; }
    .hk-nav.is-open .hk-menu li:nth-child(6) a { transition-delay: 0.26s; }
    .hk-nav.is-open .hk-menu li:nth-child(7) a { transition-delay: 0.30s; }

    /* Hide the home-icon menu item on mobile — brand logo already links home */
    .hk-nav .hk-menu li.menu-icon-home,
    .hk-nav .hk-menu li.page-item-home {
        display: none;
    }

    /* Hamburger sits ABOVE the overlay so it stays clickable */
    .hk-hamburger {
        position: relative;
        z-index: 1001;
    }

    /* Content padding */
    .hotkotur-home-wrap,
    .hotkotur-art-archive,
    .hotkotur-album-detail,
    .hotkotur-journey-detail,
    .hotkotur-artwork-detail,
    .hk-content {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    /* GRIDS — keep 2 columns on phones so portfolio still scans like a grid */
    .hotkotur-home-grid     { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .hotkotur-albums-grid   { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; padding: 0 0 2.5rem; }
    .hotkotur-photo-grid    { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .hotkotur-photo-grid[data-gallery-mode="full"] { column-count: 2; column-gap: 0.5rem; }
    .hotkotur-photo-grid[data-gallery-mode="full"] .hotkotur-photo { margin-bottom: 0.5rem; }

    .hotkotur-hero { padding: 0 0 2rem; }
    .hotkotur-hero-img { aspect-ratio: 4/3; border-radius: 0; }

    /* Album / archive titles — tighter */
    .hotkotur-album-info { padding: 0.7rem 0 0.4rem; }
    .hotkotur-album-info h4 { font-size: 1rem; letter-spacing: 0.02em; }
    .hotkotur-album-info span { font-size: 0.62rem; }

    .hk-footer {
        padding: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ===== SMALL PHONE (≤480px) ===== */
@media (max-width: 480px) {
    .hk-brand {
        font-size: 1.15rem;
        letter-spacing: 0.18em;
    }
    .hk-header-inner { padding: 0.9rem 1rem; }

    /* Even tighter content padding so photos fill more of the screen */
    .hotkotur-home-wrap,
    .hotkotur-art-archive,
    .hotkotur-album-detail,
    .hotkotur-journey-detail,
    .hotkotur-artwork-detail,
    .hk-content,
    .hotkotur-archive-wrap,
    .hotkotur-journey-archive,
    .hotkotur-about,
    .hotkotur-contact {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .hotkotur-home-grid   { gap: 0.35rem; }
    .hotkotur-albums-grid { gap: 0.5rem; }
    .hotkotur-photo-grid  { gap: 0.35rem; }

    .hotkotur-art-entry { margin-bottom: 3rem; }
    .hotkotur-album-meta {
        flex-direction: column;
        gap: 0.3rem;
    }

    /* Heading scaling */
    .hotkotur-about-title,
    .hotkotur-contact-title { font-size: 1.7rem; }
    .hotkotur-journey-card-title { font-size: 1.45rem; }
    .hotkotur-archive-title { font-size: 1.5rem; }

    /* Read-more / contact buttons full width on small screens */
    .hotkotur-btn-read-more { padding: 0.85rem 1.6rem; font-size: 0.7rem; }
    .hotkotur-contact-form button { width: 100%; text-align: center; }

    /* Disable image hover scaling on touch devices to avoid clipped frames */
    .hotkotur-album-card:hover .hotkotur-album-cover img,
    .hotkotur-home-thumb:hover img,
    .hotkotur-photo:hover img,
    .hotkotur-journey-card-img:hover img,
    .hotkotur-about-img img:hover {
        transform: none;
    }
}

/* ===== VERY SMALL PHONE (≤380px) — fall back to single column ===== */
@media (max-width: 380px) {
    .hotkotur-home-grid,
    .hotkotur-albums-grid,
    .hotkotur-photo-grid { grid-template-columns: 1fr; }
    .hotkotur-photo-grid[data-gallery-mode="full"] { column-count: 1; }
}

/* ====== ARCHIVE HEADER (Weddings, Events) ====== */
.hotkotur-archive-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2.5rem 4rem;
}

.hotkotur-archive-header {
    text-align: center;
    margin: 1rem 0 3rem;
}

.hotkotur-archive-title {
    font-family: var(--hk-serif);
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    margin: 0 0 0.8rem;
    color: var(--hk-ink);
}

.hotkotur-archive-divider {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--hk-ink-faint);
}

/* ====== JOURNEY ARCHIVE (Blog štýl) ====== */
.hotkotur-journey-archive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2.5rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.hotkotur-journey-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.hotkotur-journey-card-img {
    flex: 0 0 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
    display: block;
    overflow: hidden;
    border-radius: 2px;
}

.hotkotur-journey-card-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--hk-ease);
}

.hotkotur-journey-card-img:hover img {
    transform: scale(1.04);
}

.hotkotur-journey-card-text {
    flex: 1 1 320px;
    padding: 1rem 0;
}

.hotkotur-journey-number {
    font-family: var(--hk-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--hk-ink-light);
    margin: 0 0 1.4rem;
}

.hotkotur-journey-card-title {
    font-family: var(--hk-serif);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 1.5rem;
}

.hotkotur-journey-card-title a {
    color: var(--hk-ink);
    text-decoration: none;
}

.hotkotur-journey-card-title a:hover {
    color: var(--hk-ink-mid);
}

.hotkotur-journey-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--hk-ink-mid);
    margin: 0 0 2rem;
}

.hotkotur-btn-read-more {
    display: inline-block;
    padding: 0.95rem 2.2rem;
    border: 1px solid var(--hk-ink);
    background: transparent;
    color: var(--hk-ink);
    font-family: var(--hk-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s var(--hk-ease), color 0.3s var(--hk-ease);
}

.hotkotur-btn-read-more:hover {
    background: var(--hk-ink);
    color: var(--hk-bg);
}

@media (max-width: 900px) {
    .hotkotur-journey-archive {
        gap: 4rem;
        padding: 2rem 1.5rem 3rem;
    }

    .hotkotur-journey-card {
        gap: 1.5rem;
    }

    .hotkotur-journey-card-img,
    .hotkotur-journey-card-text {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .hotkotur-journey-card-title {
        font-size: 1.7rem;
    }

    .hotkotur-archive-title {
        font-size: 1.8rem;
    }

    .hotkotur-archive-wrap {
        padding: 1rem 1.5rem 3rem;
    }
}

/* ====== ABOUT PAGE ====== */
.hotkotur-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2.5rem 5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.hotkotur-about-img {
    flex: 0 0 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
    overflow: hidden;
    border-radius: 2px;
}

.hotkotur-about-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    filter: grayscale(0.05);
}

.hotkotur-about-text {
    flex: 1 1 320px;
    padding: 0.5rem 0;
}

.hotkotur-about-title {
    font-family: var(--hk-serif);
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 1.6rem;
    color: var(--hk-ink);
}

.hotkotur-about-body {
    color: var(--hk-ink-mid);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2.2rem;
}

.hotkotur-about-body p {
    margin-bottom: 1.2rem;
}

.hotkotur-about-body p:last-child {
    margin-bottom: 0;
}

.hotkotur-about .hotkotur-btn-read-more {
    margin-top: 0.4rem;
}

@media (max-width: 900px) {
    .hotkotur-about {
        gap: 2rem;
        padding: 2rem 1.5rem 3rem;
    }
    .hotkotur-about-img,
    .hotkotur-about-text {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .hotkotur-about-title {
        font-size: 2rem;
    }
}


/* ====== FULL / MASONRY MODE ====== */
.hotkotur-photo-grid[data-gallery-mode="full"] {
    display: block;
    column-count: 2;
    column-gap: 1rem;
}

.hotkotur-photo-grid[data-gallery-mode="full"] .hotkotur-photo {
    aspect-ratio: auto;
    overflow: visible;
    margin: 0 0 1rem;
    break-inside: avoid;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    border-radius: 1px;
}

.hotkotur-photo-grid[data-gallery-mode="full"] .hotkotur-photo a {
    display: block;
    overflow: hidden;
    border-radius: 1px;
}

.hotkotur-photo-grid[data-gallery-mode="full"] .hotkotur-photo img {
    width: 100%;
    height: auto;
    object-fit: initial;
    display: block;
}

.hotkotur-photo-grid[data-gallery-mode="full"] .hotkotur-photo:hover img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .hotkotur-photo-grid[data-gallery-mode="full"] {
        column-count: 1;
    }
}

/* ====== CONTACT PAGE ====== */
.hotkotur-contact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2.5rem 5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: flex-start;
}

.hotkotur-contact-info {
    flex: 1 1 340px;
}

.hotkotur-contact-form-wrap {
    flex: 1 1 380px;
}

.hotkotur-contact-title {
    font-family: var(--hk-serif);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 1.6rem;
    color: var(--hk-ink);
}

.hotkotur-contact-body {
    color: var(--hk-ink-mid);
    font-size: 1rem;
    line-height: 1.75;
}

.hotkotur-contact-body p { margin-bottom: 1rem; }
.hotkotur-contact-body strong {
    display: block;
    font-family: var(--hk-sans);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--hk-ink-light);
    margin-top: 1.4rem;
    margin-bottom: 0.2rem;
}
.hotkotur-contact-body strong:first-child { margin-top: 0; }

/* Built-in form */
.hotkotur-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hotkotur-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hotkotur-field span {
    font-family: var(--hk-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hk-ink-light);
}

.hotkotur-field input,
.hotkotur-field textarea {
    font-family: var(--hk-sans);
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--hk-ink);
    background: var(--hk-bg);
    border: 1px solid var(--hk-border);
    padding: 0.8rem 1rem;
    border-radius: 2px;
    width: 100%;
    transition: border-color 0.25s var(--hk-ease);
}

.hotkotur-field input:focus,
.hotkotur-field textarea:focus {
    outline: none;
    border-color: var(--hk-ink);
}

.hotkotur-field textarea {
    resize: vertical;
    min-height: 140px;
}

/* Honeypot — kept off-screen */
.hotkotur-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.hotkotur-contact-form button {
    align-self: flex-start;
    margin-top: 0.4rem;
    cursor: pointer;
}

.hotkotur-contact-success,
.hotkotur-contact-error {
    padding: 1rem 1.2rem;
    border: 1px solid var(--hk-border);
    border-radius: 2px;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 1rem;
}

.hotkotur-contact-success {
    border-color: var(--hk-ink);
    color: var(--hk-ink);
}

.hotkotur-contact-error {
    border-color: #c0392b;
    color: #c0392b;
}

@media (max-width: 900px) {
    .hotkotur-contact {
        gap: 2.5rem;
        padding: 2rem 1.5rem 3rem;
    }
    .hotkotur-contact-info,
    .hotkotur-contact-form-wrap {
        flex: 1 1 100%;
    }
    .hotkotur-contact-title { font-size: 1.8rem; }
}

/* ====== MOBILE POLISH OVERRIDES v3.6.3 ====== */
@media (max-width: 1024px) {
    .hk-header-inner {
        padding-inline: clamp(1rem, 4vw, 2rem);
    }

    .hk-nav .hk-menu {
        gap: clamp(1rem, 2.4vw, 1.6rem);
    }
}

@media (max-width: 768px) {
    .hk-header {
        background: rgba(255,255,255,0.94);
        border-bottom: 1px solid var(--hk-border-light);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .dark .hk-header,
    [data-color-mode="dark"] .hk-header {
        background: rgba(17,17,16,0.9);
    }

    .hk-header-inner {
        min-height: 64px;
        padding: 0.75rem 1rem;
    }

    .hk-brand {
        max-width: calc(100vw - 5.75rem);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hk-hamburger {
        flex: 0 0 46px;
        width: 46px;
        height: 46px;
        border: 1px solid var(--hk-border);
        border-radius: 999px;
        background: var(--hk-bg);
        box-shadow: 0 8px 24px rgba(0,0,0,.06);
    }

    .hk-nav {
        top: 64px;
        bottom: 0;
        height: auto;
        justify-content: flex-start;
        align-items: stretch;
        padding: clamp(1.2rem, 5vw, 2rem);
        background:
            linear-gradient(180deg, var(--hk-bg) 0%, var(--hk-bg-alt) 100%);
    }

    body.hk-menu-open .hk-nav,
    .hk-nav.is-open {
        opacity: 1;
        visibility: visible;
        box-shadow: 0 20px 50px rgba(0,0,0,.08);
    }

    .hk-nav .hk-menu {
        position: relative;
        z-index: 2;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
        max-width: 28rem;
        width: 100%;
        margin: 0 auto;
    }

    .hk-mobile-menu {
        position: relative;
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
        width: 100%;
        max-width: 28rem;
        margin: 0 auto;
        padding: 0;
        list-style: none;
    }

    .hk-nav .hk-menu li,
    .hk-mobile-menu li {
        display: block;
        width: 100%;
        border-bottom: 1px solid var(--hk-border-light);
    }

    .hk-nav .hk-menu li a,
    .hk-mobile-menu li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 56px;
        width: 100%;
        font-family: var(--hk-sans);
        font-size: 0.86rem;
        font-weight: 500;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--hk-ink);
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    body.hk-menu-open .hk-nav .hk-menu li a,
    .hk-nav.is-open .hk-menu li a,
    body.hk-menu-open .hk-mobile-menu li a,
    .hk-nav.is-open .hk-mobile-menu li a {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        color: var(--hk-ink) !important;
    }

    .hk-nav .hk-menu li a::before,
    .hk-mobile-menu li a::before {
        content: '';
        width: 0.42rem;
        height: 0.42rem;
        border-top: 1px solid currentColor;
        border-right: 1px solid currentColor;
        order: 2;
        opacity: 0.35;
        transform: rotate(45deg);
    }

    .hk-nav .hk-menu li.current-menu-item a,
    .hk-nav .hk-menu li.current_page_item a {
        color: var(--hk-ink-mid);
    }

    .hk-nav .hk-menu li.menu-icon-home,
    .hk-nav .hk-menu li.page-item-home {
        display: none;
    }

    .hotkotur-home-wrap,
    .hotkotur-art-archive,
    .hotkotur-archive-wrap,
    .hotkotur-album-detail,
    .hotkotur-journey-detail,
    .hotkotur-artwork-detail,
    .hotkotur-journey-archive,
    .hotkotur-about,
    .hotkotur-contact,
    .hk-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hotkotur-home-wrap {
        padding-bottom: 2.5rem;
    }

    .hotkotur-hero-img {
        aspect-ratio: 4 / 5;
    }

    .hotkotur-home-grid,
    .hotkotur-albums-grid,
    .hotkotur-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hotkotur-albums-grid,
    .hotkotur-photo-grid,
    .hotkotur-home-grid {
        gap: 0.65rem;
    }

    .hotkotur-photo-grid[data-gallery-mode="full"] {
        column-count: 1;
    }

    .hotkotur-album-cover,
    .hotkotur-photo,
    .hotkotur-home-thumb {
        border-radius: 4px;
    }

    .hotkotur-about,
    .hotkotur-contact,
    .hotkotur-journey-card {
        display: block;
    }

    .hotkotur-about-img,
    .hotkotur-about-text,
    .hotkotur-contact-info,
    .hotkotur-contact-form-wrap,
    .hotkotur-journey-card-img,
    .hotkotur-journey-card-text {
        max-width: 100%;
        width: 100%;
    }

    .hotkotur-about-img,
    .hotkotur-journey-card-img,
    .hotkotur-contact-info {
        margin-bottom: 1.5rem;
    }

    .hotkotur-contact-form button,
    .hotkotur-btn-read-more {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hotkotur-field input,
    .hotkotur-field textarea {
        min-height: 48px;
        font-size: 1rem;
    }
}

@media (max-width: 520px) {
    .hk-brand {
        font-size: 1.05rem;
        letter-spacing: 0.16em;
    }

    .hotkotur-home-grid,
    .hotkotur-albums-grid,
    .hotkotur-photo-grid {
        gap: 0.45rem;
    }

    .hotkotur-album-info h4 {
        font-size: 0.98rem;
        line-height: 1.25;
    }

    .hotkotur-album-title,
    .hotkotur-journey-title,
    .hotkotur-artwork-title,
    .hk-page-title {
        font-size: 1.8rem;
    }

    .hotkotur-contact-form button,
    .hotkotur-btn-read-more {
        width: 100%;
    }
}

@media (max-width: 360px) {
    .hotkotur-home-grid,
    .hotkotur-albums-grid,
    .hotkotur-photo-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* ====== MOBILE NAV FINAL v3.7.0 ====== */
@media (max-width: 900px) {
    .hk-header {
        position: sticky;
        top: 0;
        z-index: 5000;
        background: rgba(255,255,255,0.96);
        border-bottom: 1px solid var(--hk-border-light);
    }

    .dark .hk-header,
    [data-color-mode="dark"] .hk-header {
        background: rgba(17,17,16,0.96);
    }

    .hk-header-inner {
        min-height: 72px;
        padding: 0.85rem 1rem;
    }

    .hk-hamburger {
        display: flex !important;
        position: relative;
        z-index: 5002;
    }

    .hk-nav {
        position: fixed !important;
        top: 72px !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        z-index: 5001 !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;
        width: 100vw !important;
        height: calc(100dvh - 72px) !important;
        min-height: calc(100vh - 72px) !important;
        padding: 1.35rem 1.15rem 2rem !important;
        background: var(--hk-bg) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        overflow-y: auto !important;
        transform: translateY(-8px) !important;
        transition: opacity 0.22s var(--hk-ease), transform 0.22s var(--hk-ease), visibility 0s linear 0.22s !important;
    }

    body.hk-menu-open .hk-nav,
    .hk-nav.is-open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
        transition: opacity 0.22s var(--hk-ease), transform 0.22s var(--hk-ease), visibility 0s linear 0s !important;
    }

    .hk-nav .hk-menu {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        width: min(100%, 28rem) !important;
        margin: 0 auto !important;
        padding: 0 !important;
        list-style: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .hk-nav .hk-menu li {
        display: block !important;
        width: 100% !important;
        border-bottom: 1px solid var(--hk-border-light) !important;
    }

    .hk-nav .hk-menu li.menu-icon-home {
        display: none !important;
    }

    .hk-nav .hk-menu li a {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        min-height: 58px !important;
        width: 100% !important;
        padding: 0.25rem 0 !important;
        font-family: var(--hk-sans) !important;
        font-size: 0.86rem !important;
        font-weight: 500 !important;
        letter-spacing: 0.16em !important;
        line-height: 1.3 !important;
        text-transform: uppercase !important;
        color: var(--hk-ink) !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .hk-nav .hk-menu li a::before {
        content: none !important;
    }

    .hk-nav .hk-menu li a::after {
        content: '';
        position: static !important;
        display: block !important;
        flex: 0 0 0.45rem !important;
        width: 0.45rem !important;
        height: 0.45rem !important;
        border-top: 1px solid currentColor !important;
        border-right: 1px solid currentColor !important;
        background: transparent !important;
        opacity: 0.35 !important;
        transform: rotate(45deg) !important;
    }
}
