/* ==========================================================================
   Hookloria — white/light design system with a bold, motioned dark hero
   ========================================================================== */

:root {
	--hkl-bg: #FFFFFF;
	--hkl-surface: #F8F4FB;
	--hkl-surface-2: #F1E9F7;
	--hkl-border: rgba(27,20,32,0.11);
	--hkl-ink: #1B1420;
	--hkl-muted: #675C72;
	--hkl-magenta: #B81E9E;
	--hkl-magenta-soft: #E23FC0;
	--hkl-violet: #7C3AED;
	--hkl-amber: #A85D0A;
	--hkl-amber-soft: #F7B733;
	--hkl-grad: linear-gradient(120deg, var(--hkl-magenta-soft) 0%, var(--hkl-violet) 55%, var(--hkl-amber-soft) 100%);
	--hkl-font-display: "Bebas Neue", "Anton", Impact, sans-serif;
	--hkl-font-body: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
	background: var(--hkl-bg);
	color: var(--hkl-ink);
	font-family: var(--hkl-font-body);
}

.site-inner, .content, .entry-content, #wrap {
	background: var(--hkl-bg);
	color: var(--hkl-ink);
}

body, p, li, a, span, div { font-family: var(--hkl-font-body); }

h1, h2, h3, h4, h5, h6,
.entry-title, .widget-title, .hkl-eyebrow-h {
	font-family: var(--hkl-font-display);
	letter-spacing: 0.02em;
	color: var(--hkl-ink);
}

a { color: var(--hkl-magenta); }
a:hover { color: var(--hkl-amber); }

/* -------------------------------------------------------------------- */
/* Header / Nav                                                          */
/* -------------------------------------------------------------------- */
.site-header {
	background: rgba(255,255,255,0.88);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--hkl-border);
	position: sticky;
	top: 0;
	z-index: 999;
}

.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; }

.hkl-logo-mark { display: inline-flex; vertical-align: middle; margin-right: 10px; }
.hkl-logo-text {
	font-family: var(--hkl-font-display);
	font-size: 30px;
	letter-spacing: 0.03em;
	color: var(--hkl-ink);
	vertical-align: middle;
	text-transform: uppercase;
}
.hkl-logo-accent { color: var(--hkl-amber); }
.title-area, .site-title { display: flex; align-items: center; }
.site-title a { text-decoration: none; display: flex; align-items: center; }
.site-description { display: none; }

.nav-primary {
	background: var(--hkl-bg);
	border-bottom: 1px solid var(--hkl-border);
}
.nav-primary .wrap { padding: 0 24px; }
.nav-primary .genesis-nav-menu { justify-content: center; }

.genesis-nav-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
	background: transparent;
	list-style: none;
	margin: 0;
	padding: 0;
}
.genesis-nav-menu .menu-item {
	list-style: none;
	margin: 0;
}
.genesis-nav-menu .menu-item > a {
	font-family: var(--hkl-font-body);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hkl-ink);
	padding: 10px 16px;
	background: transparent;
	position: relative;
}
.genesis-nav-menu .menu-item > a::after {
	content: '';
	position: absolute;
	left: 16px; right: 16px; bottom: 6px;
	height: 2px;
	background: var(--hkl-grad);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s ease;
}
.genesis-nav-menu .menu-item > a:hover::after,
.genesis-nav-menu .menu-item.current-menu-item > a::after { transform: scaleX(1); }
.genesis-nav-menu .menu-item > a:hover,
.genesis-nav-menu .menu-item.current-menu-item > a { color: var(--hkl-magenta); background: transparent; }

/* -------------------------------------------------------------------- */
/* Buttons                                                               */
/* -------------------------------------------------------------------- */
.hkl-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 30px;
	border-radius: 999px;
	font-family: var(--hkl-font-body);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	background: var(--hkl-grad);
	background-size: 180% 180%;
	color: #150F1B;
	border: none;
	transition: transform .2s ease, box-shadow .2s ease, background-position .4s ease;
	box-shadow: 0 10px 26px -12px rgba(184,30,158,0.45);
}
.hkl-btn:hover { transform: translateY(-2px); background-position: 100% 0; color: #150F1B; box-shadow: 0 16px 32px -12px rgba(184,30,158,0.55); }
.hkl-btn-ghost {
	background: transparent;
	color: #F6F2F9;
	border: 1.5px solid rgba(255,255,255,0.4);
	box-shadow: none;
}
.hkl-btn-ghost:hover { border-color: var(--hkl-amber-soft); color: var(--hkl-amber-soft); transform: translateY(-2px); }

/* -------------------------------------------------------------------- */
/* Marquee ticker                                                        */
/* -------------------------------------------------------------------- */
.hkl-marquee { overflow: hidden; background: var(--hkl-surface); border-bottom: 1px solid var(--hkl-border); padding: 12px 0; }
.hkl-marquee-track {
	display: flex;
	width: max-content;
	gap: 40px;
	animation: hklMarquee 26s linear infinite;
}
.hkl-marquee-track span {
	font-family: var(--hkl-font-display);
	font-size: 18px;
	letter-spacing: 0.08em;
	color: var(--hkl-muted);
	text-transform: uppercase;
	white-space: nowrap;
}
.hkl-marquee-track span.hkl-dot { color: var(--hkl-magenta); }
@keyframes hklMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* -------------------------------------------------------------------- */
/* Hero — stays a dark, motioned band even on the light site             */
/* -------------------------------------------------------------------- */
.hkl-hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #120E17;
}
.hkl-hero-photo { position: absolute; inset: 0; z-index: 0; }
.hkl-hero-photo img {
	width: 100%; height: 100%; object-fit: cover;
	opacity: 0.5;
	animation: hklKenBurns 24s ease-in-out infinite alternate;
}
.hkl-hero-photo::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(18,14,23,0.55) 0%, rgba(18,14,23,0.85) 65%, var(--hkl-bg) 100%);
}
@keyframes hklKenBurns {
	from { transform: scale(1) translate(0,0); }
	to   { transform: scale(1.14) translate(-1.5%,-1.5%); }
}

.hkl-orb { position: absolute; border-radius: 50%; filter: blur(80px); mix-blend-mode: screen; opacity: 0.5; z-index: 1; }
.hkl-orb-a { width: 460px; height: 460px; background: var(--hkl-magenta-soft); top: -12%; left: -10%; animation: hklDrift 17s ease-in-out infinite; }
.hkl-orb-b { width: 380px; height: 380px; background: var(--hkl-amber-soft); bottom: -16%; right: -8%; animation: hklDrift 21s ease-in-out infinite reverse; }
.hkl-orb-c { width: 280px; height: 280px; background: var(--hkl-violet); top: 28%; right: 18%; animation: hklDrift 13s ease-in-out infinite; }
@keyframes hklDrift {
	0%, 100% { transform: translate(0,0) scale(1); }
	50% { transform: translate(36px,-30px) scale(1.18); }
}

.hkl-hero-content { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; text-align: center; padding: 0 24px; }
.hkl-eyebrow {
	display: inline-block;
	font-family: var(--hkl-font-body);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #F7B733;
	margin-bottom: 18px;
}
.hkl-hero-title {
	font-family: var(--hkl-font-display);
	font-size: clamp(48px, 8vw, 96px);
	line-height: 0.98;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	margin: 0 0 20px;
	color: #fff;
}
.hkl-hero-title .hkl-outline { color: transparent; -webkit-text-stroke: 2px #F7B733; }
.hkl-hero-sub { font-size: 18px; line-height: 1.6; color: #D9CEE2; max-width: 560px; margin: 0 auto 34px; }
.hkl-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }

.hkl-hero-search { display: flex; max-width: 480px; margin: 0 auto; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; padding: 6px; }
.hkl-hero-search-field { flex: 1; background: transparent; border: none; color: #F6F2F9; padding: 10px 18px; font-family: var(--hkl-font-body); font-size: 14px; }
.hkl-hero-search-field::placeholder { color: rgba(246,242,249,0.55); }
.hkl-hero-search-field:focus { outline: none; }
.hkl-hero-search-submit { background: var(--hkl-grad); color: #150F1B; border: none; border-radius: 999px; padding: 10px 22px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
	.hkl-hero-photo img, .hkl-orb, .hkl-marquee-track { animation: none !important; }
}

/* -------------------------------------------------------------------- */
/* Sections / general                                                    */
/* -------------------------------------------------------------------- */
.hkl-section { max-width: 1180px; margin: 0 auto; padding: 90px 24px; }
.hkl-section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.hkl-section-head h2 { font-size: clamp(34px, 5vw, 54px); text-transform: uppercase; margin: 8px 0 12px; color: var(--hkl-ink); }
.hkl-section-head p { color: var(--hkl-muted); font-size: 16px; line-height: 1.6; }
.hkl-eyebrow-h { display: block; font-family: var(--hkl-font-body); font-weight: 700; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--hkl-magenta); }

/* Stats bar */
.hkl-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1180px; margin: 0 auto; padding: 56px 24px; }
.hkl-stat { text-align: center; border-left: 1px solid var(--hkl-border); }
.hkl-stat:first-child { border-left: none; }
.hkl-stat-num { font-family: var(--hkl-font-display); font-size: 44px; color: var(--hkl-amber); line-height: 1; }
.hkl-stat-label { color: var(--hkl-muted); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 8px; }

/* Category horizontal scroll-snap gallery */
.hkl-cat-scroll {
	display: flex;
	gap: 22px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 6px 4px 22px;
	scrollbar-width: thin;
	scrollbar-color: var(--hkl-magenta) transparent;
}
.hkl-cat-scroll::-webkit-scrollbar { height: 6px; }
.hkl-cat-scroll::-webkit-scrollbar-thumb { background: var(--hkl-magenta); border-radius: 999px; }
.hkl-cat-card {
	position: relative;
	flex: 0 0 300px;
	height: 380px;
	border-radius: 22px;
	overflow: hidden;
	scroll-snap-align: start;
	text-decoration: none;
	display: block;
	border: 1px solid var(--hkl-border);
	box-shadow: 0 16px 36px -20px rgba(27,20,32,0.35);
}
.hkl-cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hkl-cat-card:hover img { transform: scale(1.08); }
.hkl-cat-card::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(18,14,23,0) 35%, rgba(18,14,23,0.92) 100%);
}
.hkl-cat-card:hover::after { background: linear-gradient(180deg, rgba(226,63,192,0.15) 0%, rgba(18,14,23,0.94) 100%); }
.hkl-cat-card-label { position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2; }
.hkl-cat-card-label h3 { font-size: 26px; color: #fff; margin: 0 0 6px; text-transform: uppercase; }
.hkl-cat-card-label span { color: #F7B733; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--hkl-font-body); }

/* Promise / feature columns */
.hkl-promise { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.hkl-promise-item { background: var(--hkl-surface); border: 1px solid var(--hkl-border); border-radius: 20px; padding: 34px 28px; box-shadow: 0 14px 30px -22px rgba(27,20,32,0.25); }
.hkl-promise-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--hkl-grad); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.hkl-promise-item h3 { font-size: 22px; margin: 0 0 10px; text-transform: uppercase; color: var(--hkl-ink); }
.hkl-promise-item p { color: var(--hkl-muted); line-height: 1.6; font-size: 15px; }

/* Split image/text */
.hkl-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hkl-split img { width: 100%; border-radius: 24px; display: block; box-shadow: 0 22px 50px -24px rgba(27,20,32,0.35); }
.hkl-split-text .hkl-eyebrow-h { margin-bottom: 12px; }
.hkl-split-text h2 { font-size: clamp(30px, 4vw, 44px); text-transform: uppercase; margin: 0 0 18px; color: var(--hkl-ink); }
.hkl-split-text p { color: var(--hkl-muted); line-height: 1.7; margin-bottom: 26px; font-size: 16px; }
.hkl-split.hkl-reverse { grid-template-columns: 1fr 1fr; direction: rtl; }
.hkl-split.hkl-reverse > * { direction: ltr; }

/* Callout banner */
.hkl-callout { border-radius: 28px; padding: 64px 40px; text-align: center; background: var(--hkl-grad); background-size: 160% 160%; animation: hklGradShift 12s ease infinite; }
@keyframes hklGradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hkl-callout .hkl-eyebrow-h { color: rgba(21,15,27,0.75); }
.hkl-callout h2 { color: #150F1B; font-size: clamp(32px, 5vw, 50px); text-transform: uppercase; margin: 8px 0 14px; }
.hkl-callout p { color: rgba(21,15,27,0.8); font-size: 16px; margin-bottom: 30px; }
.hkl-callout-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hkl-callout-links a {
	background: #150F1B; color: #fff; text-decoration: none;
	padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 13px;
	text-transform: uppercase; letter-spacing: 0.05em;
	transition: transform .2s ease;
}
.hkl-callout-links a:hover { transform: translateY(-2px); color: #F7B733; }

@media (prefers-reduced-motion: reduce) {
	.hkl-callout { animation: none; }
}

/* fsri-block grid card restyle */
.fsri-post-item, .archive-post-item, article.post {
	background: var(--hkl-surface);
	border: 1px solid var(--hkl-border);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 12px 28px -22px rgba(27,20,32,0.3);
}
.fsri-post-item .entry-title a, article.post .entry-title a { color: var(--hkl-ink); }
.fsri-post-item .entry-title a:hover, article.post .entry-title a:hover { color: var(--hkl-magenta); }

/* -------------------------------------------------------------------- */
/* FAQ accordion                                                         */
/* -------------------------------------------------------------------- */
.hkl-faq { max-width: 820px; margin: 0 auto; counter-reset: hkl-faq-counter; }
.hkl-faq-item {
	counter-increment: hkl-faq-counter;
	background: var(--hkl-surface);
	border: 1px solid var(--hkl-border);
	border-radius: 16px;
	padding: 6px 26px;
	margin-bottom: 16px;
	box-shadow: 0 10px 24px -20px rgba(27,20,32,0.25);
}
.hkl-faq-item summary {
	display: flex;
	gap: 18px;
	align-items: baseline;
	padding: 20px 0;
	cursor: pointer;
	font-weight: 700;
	font-size: 17px;
	color: var(--hkl-ink);
	list-style: none;
}
.hkl-faq-item summary::-webkit-details-marker { display: none; }
.hkl-faq-item summary::before {
	content: counter(hkl-faq-counter, decimal-leading-zero);
	flex: 0 0 40px;
	color: var(--hkl-magenta);
	font-family: var(--hkl-font-display);
	font-size: 20px;
}
.hkl-faq-item p { margin: 0 0 20px; padding-left: 58px; color: var(--hkl-muted); line-height: 1.7; }

/* -------------------------------------------------------------------- */
/* Footer                                                                 */
/* -------------------------------------------------------------------- */
.hkl-footer-wrap { background: var(--hkl-surface); border-top: 1px solid var(--hkl-border); padding: 64px 0 0; }
.hkl-footer-grid { max-width: 1180px; margin: 0 auto; padding: 0 24px 48px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.hkl-footer-logo { font-size: 26px; }
.hkl-footer-brand p { color: var(--hkl-muted); margin-top: 14px; font-size: 14px; line-height: 1.6; max-width: 260px; }
.hkl-footer-col h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--hkl-amber); font-family: var(--hkl-font-body); margin: 0 0 16px; }
.hkl-footer-col ul { list-style: none; margin: 0; padding: 0; }
.hkl-footer-col li { margin-bottom: 10px; }
.hkl-footer-col a { color: var(--hkl-muted); text-decoration: none; font-size: 14px; }
.hkl-footer-col a:hover { color: var(--hkl-magenta); }
.hkl-footer-bottom { border-top: 1px solid var(--hkl-border); padding: 22px 24px; text-align: center; }
.hkl-footer-bottom p { color: var(--hkl-muted); font-size: 13px; margin: 0; }

/* -------------------------------------------------------------------- */
/* Sidebar cleanup                                                       */
/* -------------------------------------------------------------------- */
.sidebar .widget { background: var(--hkl-surface); border: 1px solid var(--hkl-border); border-radius: 16px; padding: 22px; }
.sidebar .widget-title { color: var(--hkl-amber); font-size: 15px; }

/* -------------------------------------------------------------------- */
/* Responsive                                                             */
/* -------------------------------------------------------------------- */
@media (max-width: 900px) {
	.hkl-stats { grid-template-columns: repeat(2, 1fr); }
	.hkl-promise { grid-template-columns: 1fr; }
	.hkl-split, .hkl-split.hkl-reverse { grid-template-columns: 1fr; direction: ltr; }
	.hkl-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
	.hkl-footer-grid { grid-template-columns: 1fr; }
	.hkl-stats { grid-template-columns: 1fr 1fr; }
	.hkl-section { padding: 60px 20px; }
	.hkl-cat-card { flex-basis: 250px; height: 320px; }
}
