/*
Theme Name: Hijab Konveksi
Theme URI: https://hijab-konveksi.local
Author: Key Davit
Author URI: https://hijab-konveksi.local
Description: Custom WordPress theme untuk bisnis konveksi hijab. Dibuat khusus untuk menampilkan produk, layanan jahit, dan profil usaha konveksi hijab dengan tampilan bersih dan profesional.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hijab-konveksi
Tags: blog, e-commerce, custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

Hijab Konveksi is based on Underscores https://underscores.me/, (C) 2012-2024 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

/* -------------------------------------------------------------------------
   0. Reset & Base
------------------------------------------------------------------------- */
:root {
	--hk-color-primary: #172239;
	--hk-color-primary-dark: #0a0f1e;
	--hk-color-primary-light: #24304c;
	--hk-color-accent: #9aa3b1;
	--hk-color-gold: #d7a44b;
	--hk-color-gold-dark: #b3843a;
	--hk-color-gold-light: #f6e9cd;
	--hk-color-silver: #c7cbd1;
	--hk-color-dark: #172239;
	--hk-color-text: #262b35;
	--hk-color-muted: #656e7c;
	--hk-color-bg: #ffffff;
	--hk-color-bg-alt: #f4f5f8;
	--hk-color-border: #e4e6ec;
	--hk-font-base: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--hk-font-heading: var(--hk-font-base);
	--hk-shadow-sm: 0 6px 18px rgba(23, 34, 57, 0.08);
	--hk-shadow-md: 0 20px 45px rgba(23, 34, 57, 0.16);
	--hk-radius: 18px;
	--hk-container: 1160px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--hk-font-base);
	color: var(--hk-color-text);
	background-color: var(--hk-color-bg);
	line-height: 1.65;
	font-size: 16px;
}

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

a {
	color: var(--hk-color-primary-dark);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover,
a:focus {
	color: var(--hk-color-accent);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--hk-font-heading);
	font-weight: 700;
	color: var(--hk-color-dark);
	line-height: 1.2;
	letter-spacing: -0.01em;
	margin: 0 0 0.6em;
}

ul,
ol {
	padding-left: 1.2em;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #fff;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

.skip-link {
	z-index: 100000;
}

/* -------------------------------------------------------------------------
   1. Layout helpers
------------------------------------------------------------------------- */
.container {
	max-width: var(--hk-container);
	margin: 0 auto;
	padding: 0 24px;
}

.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-content {
	flex: 1 0 auto;
	padding: 48px 0;
}

.content-area {
	max-width: 720px;
}

.site-main.container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

@media (min-width: 782px) {
	.site-main.container.has-sidebar {
		grid-template-columns: 2fr 1fr;
		align-items: start;
	}
}

/* -------------------------------------------------------------------------
   2. Header
------------------------------------------------------------------------- */
.site-header {
	background-color: #fff;
	border-bottom: 3px solid var(--hk-color-gold);
	box-shadow: var(--hk-shadow-sm);
	position: sticky;
	top: 0;
	z-index: 999;
}

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

.site-branding .site-title {
	font-size: 24px;
	font-weight: 800;
	margin: 0;
	letter-spacing: -0.01em;
}

.site-branding .site-title a {
	color: var(--hk-color-dark);
}

.site-branding .site-description {
	margin: 4px 0 0;
	font-size: 13px;
	color: var(--hk-color-muted);
}

.main-navigation {
	margin-left: auto;
}

.hk-nav-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--hk-color-gold);
	color: var(--hk-color-primary-dark);
	font-weight: 700;
	font-size: 14px;
	padding: 6px 6px 6px 20px;
	border-radius: 999px;
}

.hk-nav-cta:hover,
.hk-nav-cta:focus {
	color: var(--hk-color-primary-dark);
	background: var(--hk-color-gold-dark);
}

.hk-nav-cta-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: var(--hk-color-primary-dark);
	color: #fff;
	border-radius: 50%;
	font-size: 15px;
}

@media (max-width: 900px) {
	.hk-nav-cta span:first-child {
		display: none;
	}
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	padding: 10px 16px;
	color: var(--hk-color-dark);
	font-weight: 600;
	font-size: 15px;
	border-radius: 999px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.main-navigation a:hover,
.main-navigation a:focus {
	background-color: var(--hk-color-bg-alt);
	color: var(--hk-color-gold-dark);
}

.main-navigation ul ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border: 1px solid var(--hk-color-border);
	border-radius: 12px;
	min-width: 200px;
	box-shadow: var(--hk-shadow-md);
	flex-direction: column;
	padding: 6px;
	z-index: 10;
}

.main-navigation li:hover > ul,
.main-navigation li.focus > ul {
	display: flex;
}

.menu-toggle {
	display: none;
	background: var(--hk-color-primary);
	color: #fff;
	border: 0;
	padding: 10px 16px;
	border-radius: 999px;
	font-weight: 600;
	cursor: pointer;
}

@media (max-width: 781px) {
	.menu-toggle {
		display: inline-block;
	}

	.main-navigation ul {
		display: none;
		flex-direction: column;
		width: 100%;
	}

	.main-navigation.toggled ul {
		display: flex;
	}

	.main-navigation ul ul {
		position: static;
		box-shadow: none;
		border: 0;
		padding-left: 16px;
	}
}

/* -------------------------------------------------------------------------
   3. Hero / Front page
------------------------------------------------------------------------- */
.hk-hero {
	position: relative;
	background-color: var(--hk-color-primary-dark);
	background-image: linear-gradient(135deg, var(--hk-color-primary) 0%, var(--hk-color-primary-dark) 100%);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 120px 0 90px;
	overflow: hidden;
}

.hk-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(10, 15, 30, 0.92) 0%, rgba(10, 15, 30, 0.82) 45%, rgba(10, 15, 30, 0.55) 100%);
	z-index: 0;
}

.hk-hero .container {
	position: relative;
	z-index: 1;
}

.hk-hero-content {
	max-width: 700px;
}

.hk-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 9px 18px;
	border-radius: 999px;
	margin-bottom: 22px;
}

.hk-eyebrow-dot {
	width: 7px;
	height: 7px;
	background: var(--hk-color-gold);
	flex: 0 0 auto;
}

.hk-hero h1 {
	font-size: clamp(32px, 5vw, 52px);
	color: #fff;
	margin-bottom: 18px;
	font-weight: 800;
}

.hk-hero p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.72);
	max-width: 48ch;
}

.hk-hero-actions {
	margin-top: 32px;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
}

.hk-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 8px 8px 8px 26px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	background: var(--hk-color-gold);
	color: var(--hk-color-primary-dark);
	border: 2px solid var(--hk-color-gold);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hk-btn-icon {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background: var(--hk-color-primary-dark);
	color: #fff;
	border-radius: 50%;
	font-size: 16px;
}

.hk-btn-outline .hk-btn-icon {
	display: none;
}

.hk-btn-outline {
	padding: 15px 30px;
}

.hk-btn:hover,
.hk-btn:focus {
	background: var(--hk-color-gold-dark);
	border-color: var(--hk-color-gold-dark);
	color: var(--hk-color-primary-dark);
	transform: translateY(-2px);
	box-shadow: var(--hk-shadow-md);
}

.hk-btn-outline {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.5);
}

.hk-btn-outline:hover,
.hk-btn-outline:focus {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
	color: #fff;
}

.hk-hero-info {
	margin-top: 26px;
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.hk-hero-info a {
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.hk-hero-info a:hover {
	color: var(--hk-color-gold-light);
}

.hk-hero-info-divider {
	width: 1px;
	height: 16px;
	background: rgba(255, 255, 255, 0.25);
}

.hk-section {
	padding: 88px 0;
}

.hk-section-title {
	text-align: center;
	margin-bottom: 12px;
	font-size: clamp(26px, 3.4vw, 36px);
}

.hk-section-subtitle {
	text-align: center;
	color: var(--hk-color-muted);
	max-width: 60ch;
	margin: 0 auto 48px;
	font-size: 16px;
}

.hk-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}

.hk-card {
	background: #fff;
	border: 1px solid var(--hk-color-border);
	border-radius: var(--hk-radius);
	padding: 28px;
	text-align: center;
	box-shadow: var(--hk-shadow-sm);
}

.hk-card h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.hk-card p {
	color: var(--hk-color-muted);
	font-size: 15px;
	margin: 0;
}

.hk-cta {
	background: var(--hk-color-dark);
	color: #fff;
	border-radius: var(--hk-radius);
	padding: 48px;
	text-align: center;
}

.hk-cta h2,
.hk-cta p {
	color: #fff;
}

/* Stats strip in hero */
.hk-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 20px;
	max-width: 560px;
	margin-top: 44px;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hk-stat-number {
	font-family: var(--hk-font-heading);
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 800;
	color: var(--hk-color-gold);
	margin-bottom: 4px;
}

.hk-stat-label {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.65);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 600;
}

/* About section */
.hk-about {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: center;
}

@media (min-width: 782px) {
	.hk-about {
		grid-template-columns: 0.9fr 1.1fr;
	}
}

.hk-about-eyebrow {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 12px;
	font-weight: 700;
	color: var(--hk-color-gold-dark);
	margin-bottom: 12px;
}

.hk-about-media {
	position: relative;
	background: var(--hk-color-bg-alt);
	border-radius: var(--hk-radius);
	min-height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	box-shadow: var(--hk-shadow-md);
}

.hk-about-media::before {
	content: '';
	position: absolute;
	inset: -18px -18px auto auto;
	width: 90px;
	height: 90px;
	background: var(--hk-color-gold);
	border-radius: var(--hk-radius);
	z-index: -1;
}

.hk-about-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hk-about-stat-badge {
	position: absolute;
	left: 24px;
	bottom: 24px;
	background: var(--hk-color-primary-dark);
	color: #fff;
	border-radius: 14px;
	padding: 20px 26px;
	box-shadow: var(--hk-shadow-md);
}

.hk-about-stat-badge .hk-stat-number {
	color: var(--hk-color-gold);
}

.hk-about-stat-badge .hk-stat-label {
	color: rgba(255, 255, 255, 0.75);
}

.hk-about-content p + p {
	margin-top: 1em;
}

.hk-about-actions {
	margin-top: 26px;
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.hk-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--hk-color-gold-dark);
	font-weight: 700;
	font-size: 15px;
}

.hk-link-arrow:hover,
.hk-link-arrow:focus {
	color: var(--hk-color-primary);
	text-decoration: underline;
}

.hk-about-phone {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
	color: var(--hk-color-primary-dark);
}

.hk-about-phone .hk-nav-cta-icon {
	background: var(--hk-color-gold);
	color: var(--hk-color-primary-dark);
}

/* Why choose us grid */
.hk-why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.hk-why-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: #fff;
	border: 1px solid var(--hk-color-border);
	border-radius: 14px;
	padding: 24px;
	box-shadow: var(--hk-shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hk-why-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--hk-shadow-md);
}

.hk-why-check {
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--hk-color-gold);
	color: var(--hk-color-primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 14px;
}

.hk-why-item h3 {
	font-size: 17px;
	margin: 0;
}

/* Services list */
.hk-services {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 600px) {
	.hk-services {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.hk-services {
		grid-template-columns: repeat(3, 1fr);
	}
}

.hk-service-card {
	background: #fff;
	border: 1px solid var(--hk-color-border);
	border-top: 4px solid var(--hk-color-gold);
	border-radius: 14px;
	padding: 30px;
	box-shadow: var(--hk-shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hk-service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--hk-shadow-md);
}

.hk-service-card h3 {
	font-size: 19px;
	margin-bottom: 8px;
}

.hk-service-card p {
	color: var(--hk-color-muted);
	font-size: 14px;
	margin-bottom: 14px;
}

.hk-service-tags {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.hk-service-tags li {
	background: var(--hk-color-bg-alt);
	border: 1px solid var(--hk-color-border);
	color: var(--hk-color-primary-dark);
	font-size: 12px;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 999px;
}

.hk-service-card > .hk-link-arrow {
	margin-top: 16px;
}

.hk-services-cta {
	margin-top: 44px;
	text-align: center;
}

/* Process steps */
.hk-process {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	counter-reset: hk-step;
}

@media (min-width: 600px) {
	.hk-process {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.hk-process {
		grid-template-columns: repeat(4, 1fr);
	}
}

.hk-process-step {
	position: relative;
	background: #fff;
	border: 1px solid var(--hk-color-border);
	border-radius: 14px;
	padding: 34px 22px 22px;
	counter-increment: hk-step;
	box-shadow: var(--hk-shadow-sm);
}

.hk-process-step::before {
	content: counter(hk-step, decimal-leading-zero);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	font-family: var(--hk-font-heading);
	font-size: 15px;
	font-weight: 800;
	color: var(--hk-color-primary-dark);
	background: var(--hk-color-gold);
	border-radius: 50%;
	margin-bottom: 16px;
}

.hk-process-step h3 {
	font-size: 17px;
	margin-bottom: 6px;
}

.hk-process-step p {
	color: var(--hk-color-muted);
	font-size: 14px;
	margin: 0;
}

/* Gallery / hasil produksi */
.hk-gallery-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 32px;
}

.hk-gallery-filters li {
	background: var(--hk-color-bg-alt);
	border: 1px solid var(--hk-color-border);
	color: var(--hk-color-primary-dark);
	font-size: 13px;
	font-weight: 700;
	padding: 9px 18px;
	border-radius: 999px;
}

.hk-gallery-filters li.is-active {
	background: var(--hk-color-primary-dark);
	border-color: var(--hk-color-primary-dark);
	color: #fff;
}

.hk-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.hk-gallery-item {
	background: var(--hk-color-bg-alt);
	border: 1px solid var(--hk-color-border);
	border-radius: 14px;
	overflow: hidden;
	text-align: center;
	box-shadow: var(--hk-shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hk-gallery-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--hk-shadow-md);
}

.hk-gallery-item .hk-gallery-media {
	aspect-ratio: 4 / 5;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--hk-color-bg-alt);
	color: var(--hk-color-muted);
	font-size: 13px;
}

.hk-gallery-item .hk-gallery-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hk-gallery-caption {
	padding: 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--hk-color-dark);
}

/* FAQ accordion */
.hk-faq {
	max-width: 800px;
	margin: 0 auto;
}

.hk-faq-item {
	border: 1px solid var(--hk-color-border);
	border-radius: 12px;
	margin-bottom: 12px;
	overflow: hidden;
	background: #fff;
	box-shadow: var(--hk-shadow-sm);
}

.hk-faq-question {
	width: 100%;
	text-align: left;
	background: none;
	border: 0;
	padding: 18px 22px;
	font-size: 16px;
	font-weight: 700;
	color: var(--hk-color-dark);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-family: inherit;
}

.hk-faq-question .hk-faq-icon {
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--hk-color-gold-light);
	color: var(--hk-color-primary-dark);
	font-weight: 800;
	transition: transform 0.2s ease;
}

.hk-faq-item.is-open .hk-faq-icon {
	transform: rotate(45deg);
	background: var(--hk-color-gold);
}

.hk-faq-answer {
	padding: 0 22px;
	max-height: 0;
	overflow: hidden;
	color: var(--hk-color-muted);
	font-size: 15px;
	transition: max-height 0.25s ease, padding 0.25s ease;
}

.hk-faq-item.is-open .hk-faq-answer {
	padding: 0 22px 20px;
	max-height: 400px;
}

/* Calculator */
.hk-calculator {
	max-width: 720px;
	margin: 0 auto;
	background: var(--hk-color-primary);
	border-radius: var(--hk-radius);
	padding: 36px;
	box-shadow: var(--hk-shadow-md);
}

.hk-calculator-fields {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

@media (min-width: 600px) {
	.hk-calculator-fields {
		grid-template-columns: repeat(3, 1fr);
	}
}

.hk-calculator .hk-field label {
	color: rgba(255, 255, 255, 0.85);
}

.hk-field label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 6px;
	color: var(--hk-color-dark);
}

.hk-field select,
.hk-field input[type="number"] {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid var(--hk-color-border);
	border-radius: 8px;
	font-family: inherit;
	font-size: 15px;
	background: #fff;
}

.hk-calculator-actions {
	display: flex;
	gap: 12px;
	margin-top: 20px;
	align-items: center;
	flex-wrap: wrap;
}

.hk-calculator-result {
	margin-top: 24px;
	text-align: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	padding: 24px;
}

.hk-calculator-result .hk-result-number {
	font-family: var(--hk-font-heading);
	font-size: 42px;
	font-weight: 800;
	color: var(--hk-color-gold);
}

.hk-calculator .hk-calculator-result .hk-section-subtitle {
	color: rgba(255, 255, 255, 0.75);
}

.hk-calculator-note {
	margin-top: 14px;
	font-size: 12px;
	color: var(--hk-color-muted);
	text-align: center;
}

.hk-calculator .hk-calculator-note {
	color: rgba(255, 255, 255, 0.55);
}

.hk-btn-reset {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.8);
	padding: 13px 22px;
	border-radius: 999px;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
}

.hk-btn-reset:hover {
	border-color: #fff;
	color: #fff;
}

/* Contact section */
.hk-contact {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}

@media (min-width: 900px) {
	.hk-contact {
		grid-template-columns: 0.9fr 1.1fr;
	}
}

.hk-contact-info {
	background: var(--hk-color-dark);
	color: #fff;
	border-radius: var(--hk-radius);
	padding: 36px;
}

.hk-contact-info h3 {
	color: #fff;
}

.hk-contact-list {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
}

.hk-contact-list li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin-bottom: 18px;
	font-size: 14px;
}

.hk-contact-list li a {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: var(--hk-color-gold);
}

.hk-contact-list .hk-contact-icon {
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(215, 164, 75, 0.16);
	border-radius: 50%;
}

.hk-contact-form {
	background: #fff;
	border: 1px solid var(--hk-color-border);
	border-radius: var(--hk-radius);
	padding: 36px;
	box-shadow: var(--hk-shadow-sm);
}

.hk-contact-form .hk-field {
	margin-bottom: 18px;
}

.hk-contact-form input[type="text"],
.hk-contact-form input[type="tel"],
.hk-contact-form select,
.hk-contact-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--hk-color-border);
	border-radius: 8px;
	font-family: inherit;
	font-size: 15px;
}

.hk-contact-form textarea {
	resize: vertical;
	min-height: 110px;
}

.hk-form-notice {
	padding: 14px 18px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-size: 14px;
}

.hk-form-notice.is-success {
	background: #e6f4ea;
	color: #1e7a34;
	border: 1px solid #bfe3c9;
}

.hk-form-notice.is-error {
	background: #fbeaea;
	color: #a3282c;
	border: 1px solid #f0c4c4;
}

/* -------------------------------------------------------------------------
   4. Posts / Archives
------------------------------------------------------------------------- */
.entry-header .entry-title {
	font-size: 32px;
}

.entry-meta {
	color: var(--hk-color-muted);
	font-size: 14px;
	margin-bottom: 16px;
}

.entry-meta a {
	color: var(--hk-color-muted);
}

article.post,
article.page {
	background: #fff;
	border: 1px solid var(--hk-color-border);
	border-radius: var(--hk-radius);
	padding: 32px;
	margin-bottom: 32px;
	box-shadow: var(--hk-shadow-sm);
}

.entry-content > * + * {
	margin-top: 1.1em;
}

.entry-footer {
	margin-top: 24px;
	font-size: 14px;
	color: var(--hk-color-muted);
}

.pagination,
.nav-links {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: 24px;
}

.pagination a,
.pagination span,
.nav-links a,
.nav-links span {
	padding: 8px 14px;
	border: 1px solid var(--hk-color-border);
	border-radius: 6px;
}

/* -------------------------------------------------------------------------
   5. Sidebar & Widgets
------------------------------------------------------------------------- */
.widget-area .widget {
	background: #fff;
	border: 1px solid var(--hk-color-border);
	border-radius: 14px;
	padding: 24px;
	margin-bottom: 24px;
	box-shadow: var(--hk-shadow-sm);
}

.widget-title {
	font-size: 18px;
	margin-bottom: 14px;
	border-bottom: 2px solid var(--hk-color-gold);
	padding-bottom: 8px;
	display: inline-block;
}

/* -------------------------------------------------------------------------
   6. Comments
------------------------------------------------------------------------- */
.comment-list {
	list-style: none;
	padding: 0;
}

.comment-list .comment-body {
	background: #fff;
	border: 1px solid var(--hk-color-border);
	border-radius: 14px;
	padding: 20px;
	margin-bottom: 16px;
	box-shadow: var(--hk-shadow-sm);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--hk-color-border);
	border-radius: 8px;
	font-family: inherit;
}

.comment-form p {
	margin-bottom: 16px;
}

/* -------------------------------------------------------------------------
   7. Footer
------------------------------------------------------------------------- */
.site-footer {
	background: var(--hk-color-primary-dark);
	color: rgba(255, 255, 255, 0.72);
	padding: 56px 0 24px;
	margin-top: 0;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover,
.site-footer a:focus {
	color: var(--hk-color-gold);
}

.footer-widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 24px;
	margin-bottom: 24px;
}

.footer-widgets .widget-title {
	color: #fff;
	border-bottom-color: rgba(255, 255, 255, 0.15);
}

.footer-navigation ul {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.footer-navigation a {
	font-size: 14px;
	font-weight: 600;
}

.site-info {
	text-align: center;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
}
