:root {
  --hk-brown: #683721;
  --hk-anthracite: #494c51;
  --hk-white: #ffffff;
  --hk-topbar-bg: #683721;
  --hk-topbar-text: #ffffff;
  --hk-footer-bg: #494c51;
  --hk-footer-text: #ffffff;
  --hk-accent: #683721;
  --hk-heading: #494c51;
  --hk-content-width: 1200px;
  --hk-header-height: 86px;
  --hk-border: rgba(73, 76, 81, 0.12);
  --hk-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--hk-anthracite);
  background: var(--hk-white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: var(--hk-accent); text-decoration: none; }
a:hover { opacity: .88; }
img { max-width: 100%; height: auto; display: block; }
.site-container { width: min(100% - 32px, var(--hk-content-width)); margin: 0 auto; }
.topbar {
  background: var(--hk-topbar-bg);
  color: var(--hk-topbar-text);
  font-size: 13px;
}
.topbar a { color: inherit; }
.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-col { display: flex; align-items: center; gap: 12px; }
.site-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--hk-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: var(--hk-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-branding { flex: 0 0 auto; }
.site-logo-image, .custom-logo { max-height: 64px; width: auto; }
.main-navigation { margin-left: auto; }
.main-navigation ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 26px; align-items: center; }
.main-navigation li { position: relative; }
.main-navigation a {
  color: var(--hk-heading);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.main-navigation .current-menu-item > a,
.main-navigation a:hover { color: var(--hk-accent); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle {
  width: 46px; height: 46px; border: 1px solid var(--hk-border); background: #fff; display: none;
  border-radius: 999px; padding: 0; cursor: pointer;
}
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--hk-anthracite); margin: 4px auto; }
.hero-section {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, rgba(73,76,81,.18), rgba(104,55,33,.28)), url('../images/logo.png') center/contain no-repeat, #ece8e5;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(73,76,81,.72) 0%, rgba(73,76,81,.24) 45%, rgba(73,76,81,.10) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 110px 0; }
.hero-content { max-width: 660px; color: #fff; }
.hero-kicker {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,.45);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
}
.hero-content h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 300;
}
.hero-content p { font-size: 18px; max-width: 54ch; }
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  background: var(--hk-brown);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: var(--hk-shadow);
}
.feature-cards-section { padding: 56px 0 20px; background: #fff; }
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--hk-border);
  box-shadow: var(--hk-shadow);
}
.feature-card-image {
  min-height: 190px;
  background: linear-gradient(135deg, rgba(104,55,33,.18), rgba(73,76,81,.05));
}
.feature-card-body { padding: 26px; }
.feature-card h2 {
  margin: -42px 0 14px;
  display: inline-block;
  background: var(--hk-brown);
  color: #fff;
  padding: 10px 14px;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .08em;
}
.front-page-content, .narrow-content { padding: 44px 0 72px; }
.narrow-content { width: min(100% - 32px, 900px); margin: 0 auto; }
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  padding: 44px 0 72px;
}
.content-card, .single-entry, .widget {
  background: #fff;
  border: 1px solid var(--hk-border);
  box-shadow: 0 10px 24px rgba(0,0,0,.04);
}
.content-card { padding: 20px; margin-bottom: 24px; }
.single-entry { padding: 28px; }
.entry-title { margin: 0 0 16px; color: var(--hk-heading); }
.entry-title a { color: inherit; }
.widget-area { display: grid; gap: 20px; }
.widget { padding: 20px; }
.widget-title { margin-top: 0; }
.footer-widgets {
  padding: 52px 0 24px;
  background: var(--hk-footer-bg);
  color: var(--hk-footer-text);
}
.footer-widgets a, .footer-bottom a { color: inherit; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.footer-bottom {
  background: color-mix(in srgb, var(--hk-footer-bg) 88%, #000);
  color: var(--hk-footer-text);
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-bottom-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-menu { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--hk-brown);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--hk-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.search-form { display: flex; gap: 8px; }
.search-field, .search-submit {
  min-height: 44px;
  border: 1px solid var(--hk-border);
  border-radius: 999px;
}
.search-field { padding: 0 14px; min-width: 220px; }
.search-submit { padding: 0 18px; background: var(--hk-brown); color: #fff; cursor: pointer; }
.fullwidth-page-template .alignwide,
.fullwidth-page-template .alignfull,
.entry-content .alignwide,
.entry-content .alignfull { width: 100%; max-width: 100%; }
.elementor-section.elementor-section-boxed > .elementor-container,
.e-con-boxed.e-con { max-width: var(--hk-content-width); }
@media (max-width: 1024px) {
  .main-navigation { display: none; position: absolute; top: calc(100% + 1px); left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--hk-border); padding: 18px 16px 22px; }
  .main-navigation.is-open { display: block; }
  .main-navigation ul { flex-direction: column; align-items: flex-start; gap: 14px; }
  .menu-toggle { display: inline-block; }
  .feature-cards-grid, .footer-grid, .content-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .topbar-inner, .footer-bottom-inner { flex-direction: column; justify-content: center; padding: 10px 0; text-align: center; }
  .hero-inner { padding: 86px 0; }
  .hero-content h1 { font-size: 36px; }
  .hero-content p { font-size: 16px; }
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute !important;
  word-wrap: normal !important;
}
