:root {
  --xk-blue: #2491ea;
  --xk-blue-dark: #1a6cb3;
  --xk-blue-deep: #134e82;
  --xk-charcoal: #1f2937;
  --xk-dark: #111827;
  --xk-gold: #C4A882;
  --xk-gold-light: #DFCAAE;
  --xk-cream: #FAF9F6;
  --xk-bg: #F8FAFC;
  --xk-border: #E5E7EB;
  --xk-text: #374151;
  --xk-muted: #6B7280;
  --xk-success: #10B981;
}

/* Base Layout & Containers */
.hk-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Breadcrumbs */
.hk-breadcrumbs {
  background: #f1f5f9;
  padding: 12px 0;
  border-bottom: 1px solid var(--xk-border);
  font-size: 13px;
  color: var(--xk-muted);
}
.hk-breadcrumbs a { color: var(--xk-blue); text-decoration: none; }
.hk-breadcrumbs a:hover { text-decoration: underline; }
.hk-breadcrumbs span { margin: 0 8px; color: #94a3b8; }

/* Hero */
.hk-hero {
  background: #1c1a17;
  color: #ffffff;
  padding: 64px 0 76px;
  position: relative;
  border-bottom: 3px solid var(--xk-gold);
  overflow: hidden;
}
.hk-hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle at 80% 20%, rgba(196, 168, 130, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--xk-gold-light);
  background: rgba(196, 168, 130, 0.16);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(196, 168, 130, 0.4);
}
.hk-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 20px;
  color: #ffffff;
}
.hk-hero h1 span { color: var(--xk-gold-light); font-style: italic; }
.hk-hero-lead {
  color: #f1f5f9 !important;
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 660px;
}
.hk-usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
  max-width: 660px;
}
.hk-usp-box {
  background: rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--xk-gold);
  padding: 12px 16px;
  border-radius: 0 6px 6px 0;
  backdrop-filter: blur(4px);
}
.hk-usp-box strong { display: block; font-size: 13px; color: #ffffff; margin-bottom: 3px; }
.hk-usp-box span { font-size: 12px; color: #e2e8f0; }

/* Trust Bar */
.hk-trust-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--xk-border);
  padding: 18px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.hk-trust-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.hk-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
}
.hk-trust-item svg { color: var(--xk-gold); flex-shrink: 0; }

/* Buttons */
.hk-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #C4A882 0%, #9c8259 100%);
  color: #1c1a17 !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(196, 168, 130, 0.35);
  transition: all 0.25s ease;
}
.hk-btn-primary:hover {
  background: linear-gradient(135deg, #DFCAAE 0%, #C4A882 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(196, 168, 130, 0.45);
}
.hk-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.25s ease;
}
.hk-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #ffffff; }

/* Form Card */
.hk-form-card {
  background: #26221d;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  color: #ffffff;
}
.hk-form-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  margin: 0 0 8px;
  color: #ffffff;
}
.hk-form-group { margin-bottom: 14px; }
.hk-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}
.hk-form-control {
  width: 100%;
  padding: 11px 14px;
  background: #14120f;
  border: 1px solid #3a352c;
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.hk-form-control:focus {
  outline: none;
  border-color: var(--xk-gold);
  box-shadow: 0 0 0 3px rgba(196, 168, 130, 0.25);
}
.hk-form-alert {
  display: none;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 14px;
}
.hk-form-alert.success { display: block; background: rgba(16, 185, 129, 0.2); border: 1px solid #10b981; color: #6ee7b7; }
.hk-form-alert.error { display: block; background: rgba(239, 68, 68, 0.2); border: 1px solid #ef4444; color: #fca5a5; }

/* Sections */
.hk-section { padding: 70px 0; }
.hk-section.bg-light { background: var(--xk-bg); }
.hk-section.bg-white { background: #ffffff; }
.hk-section-header { text-align: center; max-width: 800px; margin: 0 auto 50px; }
.hk-section-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.8vw, 44px);
  color: #0f172a;
  margin: 0 0 16px;
  line-height: 1.18;
}
.hk-section-header p { font-size: 16px; color: var(--xk-muted); line-height: 1.65; margin: 0; }

/* Spoke Grid (handle type cards) */
.hk-spoke-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 28px;
}
.hk-spoke-card {
  background: #ffffff;
  border: 1px solid var(--xk-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.hk-spoke-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.09);
  border-color: #cbd5e1;
}
.hk-spoke-img-wrap {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: #1c1a17;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hk-spoke-img-wrap svg { color: var(--xk-gold-light); transition: transform 0.4s ease; }
.hk-spoke-card:hover .hk-spoke-img-wrap svg { transform: scale(1.08); }
.hk-spoke-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hk-spoke-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hk-spoke-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.hk-spoke-body h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 26px; color: #0f172a; margin: 0 0 10px; }
.hk-spoke-desc { font-size: 14px; line-height: 1.6; color: #4b5563; margin: 0 0 18px; flex-grow: 1; }
.hk-spec-list { list-style: none; padding: 0; margin: 0 0 20px; border-top: 1px solid #f1f5f9; padding-top: 14px; }
.hk-spec-list li { font-size: 13px; color: #334155; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.hk-spec-list li svg { color: var(--xk-gold); flex-shrink: 0; }
.hk-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--xk-border);
  padding-top: 16px;
  margin-top: auto;
}
.hk-price-tag { font-size: 13px; font-weight: 700; color: #0f172a; }
.hk-card-link { color: var(--xk-blue-dark); font-weight: 700; font-size: 13px; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.hk-card-link:hover { color: var(--xk-blue); }

/* Finish Swatch Gallery */
.hk-gallery-showcase { background: #14120f; color: #ffffff; padding: 80px 0; }
.hk-filter-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.hk-filter-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #e2e8f0;
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.hk-filter-btn:hover, .hk-filter-btn.active {
  background: var(--xk-gold);
  color: #1c1a17;
  border-color: var(--xk-gold);
  box-shadow: 0 4px 14px rgba(196, 168, 130, 0.4);
}
.hk-photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.hk-photo-card {
  background: #26221d;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.hk-photo-card:hover { transform: translateY(-4px); border-color: var(--xk-gold); box-shadow: 0 12px 28px rgba(0,0,0,0.5); }
.hk-photo-thumb {
  height: 180px;
  width: 100%;
  overflow: hidden;
  background: #000000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hk-photo-thumb svg { transition: transform 0.4s ease; }
.hk-photo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hk-photo-card:hover .hk-photo-thumb svg,
.hk-photo-card:hover .hk-photo-thumb img { transform: scale(1.08); }
.hk-photo-body { padding: 16px; }
.hk-photo-title { font-size: 15px; font-weight: 700; color: #ffffff; margin: 0 0 6px; }
.hk-photo-cat { font-size: 11px; color: var(--xk-gold-light); background: rgba(196, 168, 130, 0.12); border: 1px solid rgba(196, 168, 130, 0.25); padding: 4px 8px; border-radius: 4px; display: inline-block; }
.hk-swatch-row { display: flex; gap: 8px; padding: 0 16px 16px; flex-wrap: wrap; }
.hk-swatch { width: 22px; height: 22px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.25); flex-shrink: 0; }

/* Modal */
.hk-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.hk-modal-overlay.open { display: flex; }
.hk-modal-box {
  background: #26221d;
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  overflow: hidden;
  color: #fff;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  max-height: 90vh;
  overflow-y: auto;
}
.hk-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hk-modal-content { display: grid; grid-template-columns: 1.1fr 1fr; }
.hk-modal-image { background: #1c1a17; display: flex; align-items: center; justify-content: center; min-height: 320px; }
.hk-modal-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hk-modal-details { padding: 30px; }

/* Decision Aid / Comparison Table */
.hk-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid var(--xk-border);
  background: #ffffff;
}
.hk-comparison-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 14px; }
.hk-comparison-table th {
  background: #1c1a17;
  color: #ffffff;
  padding: 16px 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 13px;
  text-transform: uppercase;
}
.hk-comparison-table th.highlight { background: var(--xk-blue); }
.hk-comparison-table td { padding: 14px 18px; border-bottom: 1px solid var(--xk-border); color: #334155; }
.hk-comparison-table tr:hover td { background: #f8fafc; }
.hk-comparison-table td.highlight { background: rgba(36, 145, 234, 0.04); font-weight: 600; color: #0f172a; }
.rating-pill { display: inline-block; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; }
.rating-pill.best { background: #dcfce7; color: #15803d; }
.rating-pill.good { background: #e0f2fe; color: #0369a1; }
.rating-pill.mid { background: #fef9c3; color: #854d0e; }
.rating-pill.care { background: #fee2e2; color: #b91c1c; }

/* Planning / Consideration Cards */
.hk-plan-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.hk-plan-card {
  background: #ffffff;
  border: 1px solid var(--xk-border);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.hk-plan-icon {
  width: 56px;
  height: 56px;
  background: #f5f1ea;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--xk-gold);
}
.hk-plan-card h4 { font-size: 16px; font-weight: 700; color: #0f172a; margin: 0 0 8px; }
.hk-plan-card p { font-size: 13px; color: var(--xk-muted); line-height: 1.6; margin: 0; }

/* 4-Step Process */
.hk-process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; position: relative; }
.hk-step-card {
  background: #ffffff;
  border: 1px solid var(--xk-border);
  border-radius: 10px;
  padding: 28px 24px;
  position: relative;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.hk-step-number {
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--xk-gold);
  color: #1c1a17;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(196, 168, 130, 0.4);
}
.hk-step-card h4 { font-size: 18px; font-weight: 700; color: #0f172a; margin: 12px 0 10px; }
.hk-step-card p { font-size: 14px; line-height: 1.6; color: var(--xk-muted); margin: 0; }

/* FAQs Accordion */
.hk-faqs { max-width: 900px; margin: 0 auto; }
.hk-faq-item { border: 1px solid var(--xk-border); border-radius: 8px; margin-bottom: 12px; background: #ffffff; overflow: hidden; }
.hk-faq-question {
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.hk-faq-question svg { transition: transform 0.25s ease; color: var(--xk-gold); }
.hk-faq-item.active .hk-faq-question svg { transform: rotate(180deg); }
.hk-faq-answer { padding: 0 22px 18px; font-size: 14px; line-height: 1.7; color: #4b5563; display: none; }
.hk-faq-item.active .hk-faq-answer { display: block; }

/* Responsive */
@media (max-width: 900px) {
  .hk-grid-2 { grid-template-columns: 1fr !important; }
  .hk-modal-content { grid-template-columns: 1fr; }
  .hk-modal-image { max-height: 250px; }
}
@media (max-width: 600px) {
  .hk-hero { padding: 40px 0 50px; }
  .hk-trust-row { flex-direction: column; align-items: flex-start; }
}
