/* House of Kustomz — design system */
:root {
  --hk-ink: #0a0a0a;
  --hk-ink-2: #141414;
  --hk-ink-3: #1f1f1f;
  --hk-navy: #1f4fb8;
  --hk-navy-deep: #163880;
  --hk-sand: #d4b483;
  --hk-sand-deep: #a8895c;
  --hk-orange: #ff5a1f;
  --hk-stone: #f4f1ec;
  --hk-stone-2: #ebe7df;
  --hk-white: #ffffff;
  --hk-rule: rgba(10, 10, 10, 0.12);
  --hk-rule-dark: rgba(255, 255, 255, 0.14);

  --f-display: "Bebas Neue", "Archivo Narrow", Impact, sans-serif;
  --f-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --f-serif: "Fraunces", "Times New Roman", serif;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--hk-stone);
  color: var(--hk-ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Layout ---------- */
.hk-container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.hk-section { padding: clamp(64px, 7vw, 100px) 0; }
.hk-section.tight { padding: clamp(48px, 6vw, 96px) 0; }
.hk-dark { background: var(--hk-ink); color: var(--hk-white); }
.hk-dark .hk-eyebrow { color: var(--hk-sand); }
.hk-section.hk-dark + .hk-section { padding-top: clamp(64px, 9vw, 120px); }

/* ---------- Typography ---------- */
.hk-eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hk-navy);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hk-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

.hk-display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0;
}
.hk-h1 { font-size: clamp(56px, 9vw, 132px); }
.hk-h2 { font-size: clamp(40px, 6vw, 88px); }
.hk-h3 { font-size: clamp(28px, 3.2vw, 44px); }
.hk-h4 { font-size: clamp(22px, 2vw, 28px); }

.hk-italic {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--hk-navy);
  font-size: 110px;
}
.hk-italic.sand { color: var(--hk-sand); }
.hk-italic.orange { color: var(--hk-orange); }

.hk-lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.72);
  max-width: 56ch;
}
.hk-dark .hk-lede { color: rgba(255, 255, 255, 0.72); }

.hk-kicker {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--hk-ink);
}

/* ---------- Buttons ---------- */
.hk-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid transparent;
  background: var(--hk-ink);
  color: var(--hk-white);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.hk-btn .hk-arrow {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.hk-btn .hk-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.hk-btn:hover { transform: translateY(-1px); }
.hk-btn.primary { background: var(--hk-ink); color: var(--hk-white); }
.hk-btn.primary:hover { background: var(--hk-navy); }
.hk-btn.secondary { background: transparent; color: var(--hk-ink); border-color: var(--hk-ink); }
.hk-btn.secondary:hover { background: var(--hk-ink); color: var(--hk-white); }
.hk-dark .hk-btn.secondary { color: var(--hk-white); border-color: var(--hk-white); }
.hk-dark .hk-btn.secondary:hover { background: var(--hk-white); color: var(--hk-ink); }
.hk-btn.navy { background: var(--hk-navy); color: #fff; }
.hk-btn.navy:hover { background: var(--hk-navy-deep); }
.hk-btn.orange { background: var(--hk-orange); color: #fff; }
.hk-btn.orange:hover { background: #e34a14; }

/* ---------- Header B: Workshop Bar ---------- */
.hk-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--hk-white);
  border-bottom: 1px solid var(--hk-rule);
}
.hk-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  min-height: 78px;
}
.hk-header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 28px 8px var(--gutter);
  border-right: 1px solid var(--hk-rule);
}
.hk-header-logo img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}
.success-msg {
    color: green;
}
.hk_2_col{display:grid;grid-template-columns:1fr 1fr;gap:56px;}

@media (max-width: 600px) {
  .hk-header-logo { padding: 8px 16px 8px var(--gutter); gap: 10px; }
  .hk-header-logo img { height: 62px; }
}

.hk-nav { display: flex; align-items: center; gap: 4px; padding: 0 28px; }
.hk-nav a {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 14px;
  color: var(--hk-ink);
}
.hk-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 1.5px;
  background: var(--hk-navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.hk-nav a:hover::after,
.hk-nav a.active::after { transform: scaleX(1); }
.hk-nav a.active { color: var(--hk-navy); }

.hk-book-dock {
  background: var(--hk-ink);
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 28px 0 44px;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.2s ease;
}
.hk-book-dock::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 38px;
  background: var(--hk-ink);
  transform: skewX(-18deg);
  transform-origin: bottom;
}
.hk-book-dock:hover { background: var(--hk-navy); }
.hk-book-dock:hover::before { background: var(--hk-navy); }
.hk-book-dock span { position: relative; display: flex; align-items: center; gap: 12px; }
.hk-book-dock .dot {
  width: 8px; height: 8px;
  background: var(--hk-orange);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.25);
}

.hk-menu-btn, .hk-img-tag, .hk-img-corner{ display: none; }

@media (max-width: 1080px) {
  .hk-header-inner { grid-template-columns: auto auto auto; }
  .hk-nav { display: none; }
  .hk-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 0 24px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
  }
  .hk-menu-btn .bars { display: inline-grid; gap: 4px; }
  .hk-menu-btn .bars i { display: block; width: 22px; height: 2px; background: var(--hk-ink); }
  .hk-nav.open {
    display: grid;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px var(--gutter);
    border-bottom: 1px solid var(--hk-rule);
    z-index: 60;
  }
  .hk-nav.open a { padding: 12px 0; }
  .hk-nav.open a::after { left: 0; right: auto; width: 24px; bottom: 4px; }
}
@media (max-width: 640px) {
  .hk-book-dock { padding: 0 18px 0 32px; font-size: 11px; letter-spacing: 0.14em; }
  .hk-book-dock::before { width: 26px; }
  .hk-book-dock span { gap: 8px; }
  .hk-menu-btn { padding: 0 14px; }
  .hk-menu-btn span:not(.bars) { display: none; }
}

/* ---------- Footer C: Pit Lane ---------- */
.hk-footer {
  background: var(--hk-ink);
  color: #fff;
  padding-top: 80px;
}
.hk-footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 var(--gutter);
}
.hk-footer-logo {
  height: 96px;
  width: auto;
  display: block;
  opacity: 0.95;
}
.hk-feat > div h4 {
    color: #000;
}
.hk-page-hero-visual img {
    max-height: 600px;
    margin: 0 auto;
}
.grid_3_box {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}
.grid_3_box .bg {
    aspect-ratio: 3 / 2;
}
.w40 {
    width: calc(44% - 10px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.w60 {
    width: calc(55% - 10px);
}


.hk-footer-wordmark {
  font-family: var(--f-display);
  font-size: clamp(80px, 16vw, 240px);
  line-height: 0.85;
  letter-spacing: 0.005em;
  text-align: center;
  padding: 0 var(--gutter);
  margin: 0;
}
.hk-footer-wordmark .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--hk-sand);
}
.hk-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding: 64px var(--gutter) 36px;
  border-top: 1px solid var(--hk-rule-dark);
  margin-top: 60px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.hk-footer-grid h5 {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--hk-sand);
  margin: 0 0 18px 0;
  font-weight: 700;
}
.hk-footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.hk-footer-grid ul a { color: rgba(255, 255, 255, 0.78); font-size: 14px; }
.hk-footer-grid ul a:hover { color: #fff; }
.hk-footer-contact p { margin: 0 0 8px 0; font-size: 14px; color: rgba(255, 255, 255, 0.78); }
.hk-footer-contact p strong { color: #fff; font-weight: 700; }
.hk-footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px var(--gutter) 36px;
  border-top: 1px solid var(--hk-rule-dark);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  max-width: var(--container);
  margin: 0 auto;
  flex-wrap: wrap;
}
.hk-footer-meta .social { display: flex; gap: 14px; }
.hk-footer-meta .social a {
  width: 32px; height: 32px;
  border: 1px solid var(--hk-rule-dark);
  display: inline-grid; place-items: center;
  font-size: 11px; letter-spacing: 0.1em;
  color: #fff;
}
.hk-footer-meta .social a:hover { background: var(--hk-orange); border-color: var(--hk-orange); }

@media (max-width: 880px) {
  .hk-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .hk-footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Placeholder boxes ---------- */
.hk-img {
    position: relative;
    overflow: hidden;
    display: block;
    background-size: cover !important;
    background-position: center !important;
}
/*.hk-img::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background:*/
/*    repeating-linear-gradient(135deg,*/
/*      transparent 0 18px,*/
/*      rgba(212, 180, 131, 0.18) 18px 19px);*/
/*}*/
.hk-img .hk-img-corner {
  position: absolute;
  top: 14px; left: 14px;
  width: 18px; height: 18px;
  border-top: 1.5px solid var(--hk-navy);
  border-left: 1.5px solid var(--hk-navy);
}
.hk-img .hk-img-meta {
  position: absolute;
  left: 18px; bottom: 16px; right: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
}
.hk-img .hk-img-tag {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hk-navy);
  background: rgba(244, 241, 236, 0.92);
  padding: 5px 8px;
}
.hk-img .hk-img-name {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4b483;
}
.hk-img .hk-img-desc {
  font-family: var(--f-body);
  font-size: 11px;
  color: #fff;
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.hk-img.dark { background: #1a1a1a; }
.hk-img.dark::before {
  background: repeating-linear-gradient(135deg,
    transparent 0 18px,
    rgba(212, 180, 131, 0.10) 18px 19px);
}
.hk-img.dark .hk-img-corner { border-color: var(--hk-sand); }
.hk-img.dark .hk-img-tag { background: rgba(10, 10, 10, 0.85); color: var(--hk-sand); }
.hk-img.dark .hk-img-name { color: #fff; }
.hk-img.dark .hk-img-desc { color: rgba(255, 255, 255, 0.55); }

/* Photo-backed placeholders */
.hk-img.has-photo {
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hk-img.has-photo::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.0) 40%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 30%);
}
.hk-img.has-photo .hk-img-corner { border-color: rgba(255, 255, 255, 0.85); }
.hk-img.has-photo .hk-img-tag {
  background: rgba(10, 10, 10, 0.78);
  color: var(--hk-sand);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hk-img.has-photo .hk-img-name { color: #fff; }
.hk-img.has-photo .hk-img-desc { color: rgba(255, 255, 255, 0.78); }

/* ---------- Hero ---------- */
.hk-hero { position: relative; overflow: hidden; }
.hk-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 55px;
  align-items: center;
  padding: clamp(60px, 8vw, 120px) 0 clamp(80px, 9vw, 140px);
}
.hk-hero h1 .row { display: block; }
.hk-hero h1 .row.indent { padding-left: 55px; }
.hk-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hk-hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--hk-rule);
  flex-wrap: wrap;
}
.hk-hero-meta div { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; }
.hk-hero-meta div span { display: block; font-weight: 400; color: rgba(10, 10, 10, 0.55); letter-spacing: 0.04em; text-transform: none; margin-top: 4px; font-size: 13px; }

.hk-hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.hk-hero-visual .hk-img { aspect-ratio: 4 / 5; }
.hk-hero-visual .v1 { grid-row: 1 / span 2; aspect-ratio: 3 / 5; }
.hk-hero-visual .v2 { aspect-ratio: 4 / 3; }
.hk-hero-visual .v3 { aspect-ratio: 4 / 3; }
.hk-hero-chip {
  position: absolute;
  left: -23px;
  bottom: 56px;
  background: var(--hk-ink);
  color: #fff;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 3;
}
.hk-hero-chip .pulse { width: 8px; height: 8px; background: var(--hk-orange); border-radius: 50%; box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.25); }

@media (max-width: 960px) {
  .hk-hero-inner { grid-template-columns: 1fr; }
}

/* ---------- Stats strip ---------- */
.hk-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hk-rule-dark);
  border-bottom: 1px solid var(--hk-rule-dark);
}
.hk_stats{grid-template-columns: repeat(3, 1fr);}
.hk_stats .inn_box {
    display: flex;
    align-items: center;
}
.hk-stats > div {
  padding: 48px 32px;
  border-right: 1px solid var(--hk-rule-dark);
  display: grid;
  gap: 12px;
}
.hk-stats > div:last-child { border-right: 0; }
.hk-stats .num { font-family: var(--f-display); font-size: clamp(48px, 6vw, 60px); line-height: 0.9; color: var(--hk-sand); }
.hk-stats .num em { font-family: var(--f-serif); font-style: italic; color: var(--hk-orange); font-size: 0.5em; vertical-align: super; margin-left: 4px; }
.hk-stats .lbl { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: #fff; }
.hk-stats .sub { font-size: 13px; color: rgba(255, 255, 255, 0.6); }
@media (max-width: 880px) {
  .hk-stats { grid-template-columns: 1fr 1fr; }
  .hk-stats > div:nth-child(2) { border-right: 0; }
  .hk-stats > div:nth-child(-n+2) { border-bottom: 1px solid var(--hk-rule-dark); }
}

/* ---------- Section header ---------- */
.hk-sec-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 56px;
}
.hk-sec-head .right { justify-self: end; text-align: right; max-width: 44ch; }
@media (max-width: 800px) {
  .hk-sec-head { grid-template-columns: 1fr; }
  .hk-sec-head .right { justify-self: start; text-align: left; }
}

/* ---------- Services grid ---------- */
.hk-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hk-rule);
  border: 1px solid var(--hk-rule);
}
.hk-svc-card {
  background: #fff;
  padding: 28px;
  display: grid;
  gap: 20px;
  transition: background 0.2s ease;
  position: relative;
}
.hk-svc-card:hover { background: #fbfaf7; }
.hk-svc-card .hk-img { aspect-ratio: 4 / 3; }
.hk-svc-card .hk-svc-head {
  display: none; align-items: flex-start; justify-content: space-between; gap: 18px;
}
.hk-svc-card h3 {
  font-family: var(--f-display); font-size: 32px; line-height: 1; margin: 0; letter-spacing: 0.01em; text-transform: uppercase;
}
.hk-svc-card .num {
  font-family: var(--f-body); font-size: 11px; letter-spacing: 0.2em; color: rgba(10,10,10,0.4); font-weight: 700;
}
.hk-svc-card p { margin: 0; font-size: 14px; color: rgba(10,10,10,0.7); }
.hk-svc-card .hk-svc-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--hk-rule);
}
.hk-svc-card .price { font-family: var(--f-display); font-size: 24px; color: var(--hk-navy); letter-spacing: 0.01em; }
.hk-svc-card .price em { font-family: var(--f-body); font-style: normal; font-size: 10px; letter-spacing: 0.2em; color: rgba(10,10,10,0.5); margin-right: 6px; font-weight: 700; text-transform: uppercase; }
.hk-svc-card .explore {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px; color: var(--hk-ink);
}
.hk-svc-card .explore::after {
  content: ""; width: 14px; height: 1px; background: currentColor; position: relative;
  transition: width 0.2s ease;
}
.hk-svc-card:hover .explore::after { width: 24px; }
.hk-svc-card.featured { background: var(--hk-ink); color: #fff; }
.hk-svc-card.featured h3 { color: #fff; }
.hk-svc-card.featured p { color: rgba(255,255,255,0.7); }
.hk-svc-card.featured .num { color: rgba(255,255,255,0.5); }
.hk-svc-card.featured .price { color: var(--hk-orange); }
.hk-svc-card.featured .price em { color: rgba(255,255,255,0.55); }
.hk-svc-card.featured .explore { color: #fff; }
.hk-svc-card.featured .hk-svc-foot { border-color: rgba(255,255,255,0.14); }
.hk-svc-card.featured:hover { background: #141414; }
.hk-svc-card .badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--hk-orange); color: #fff;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  padding: 4px 8px;
}

@media (max-width: 960px) { .hk-svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .hk-svc-grid { grid-template-columns: 1fr; } }

/* ---------- Brands strip ---------- */
.hk-brands {
  border-top: 1px solid var(--hk-rule);
  border-bottom: 1px solid var(--hk-rule);
  padding: 32px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 40px;
}
.hk-brands .label { font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; color: rgba(10,10,10,0.55); }
.hk-brands .row { display: flex; gap: clamp(28px, 5vw, 64px); align-items: center; flex-wrap: wrap; }
.hk-brands .row span {
  font-family: var(--f-display); font-size: 28px; letter-spacing: 0.04em; color: var(--hk-ink); opacity: 0.55;
  transition: opacity 0.2s ease;
}
.hk-brands .row span:hover { opacity: 1; color: var(--hk-navy); }

/* ---------- Showcase ---------- */
.hk-showcase {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.hk-showcase .s1 { grid-column: span 6; aspect-ratio: 16 / 10; }
.hk-showcase .s2 { grid-column: span 3; aspect-ratio: 3 / 4; }
.hk-showcase .s3 { grid-column: span 3; aspect-ratio: 3 / 4; }
.hk-showcase .s4 { grid-column: span 4; aspect-ratio: 4 / 3; }
.hk-showcase .s5 { grid-column: span 4; aspect-ratio: 4 / 3; }
.hk-showcase .s6 { grid-column: span 4; aspect-ratio: 4 / 3; }
@media (max-width: 800px) {
  .hk-showcase { grid-template-columns: 1fr 1fr; }
  .hk-showcase .hk-img { grid-column: span 1 !important; aspect-ratio: 4 / 4 !important; }
}

/* ---------- Lifestyle ---------- */
.hk-lifestyle-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.hk_lifestyle_grid {
    grid-template-columns: 3fr 2fr;
}
.hk-life-card {
  background: #141414;
  border: 1px solid var(--hk-rule-dark);
  padding: 32px;
  display: grid;
  gap: 24px;
}
.hk-life-card .hk-img { aspect-ratio: 16 / 10; }
.hk-life-card h3 { font-family: var(--f-display); font-size: 35px; margin: 0; letter-spacing: 0.02em; color: var(--hk-sand); }
.hk-life-card p { color: rgba(255,255,255,0.7); font-size: 15px; margin: 0; }
.hk-life-card .meta {
  display: flex; gap: 5px; flex-wrap: wrap;
  border-top: 1px solid var(--hk-rule-dark); padding-top: 18px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,0.6);
}
.hk-life-card .meta strong { color: var(--hk-sand); font-weight: 700; }
.hk-life-card .pending {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  color: var(--hk-orange);
}
.hk-life-card .pending::before { content: ""; width: 8px; height: 8px; background: var(--hk-orange); border-radius: 50%; }
@media (max-width: 800px) { .hk-lifestyle-grid, .hk_lifestyle_grid { grid-template-columns: 1fr; } }

/* ---------- Wheels teaser (category, not catalogue) ---------- */
.hk-wheels-cat {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: center;
}
.hk-wheels-cat .hk-img { aspect-ratio: 5 / 4; }
.hk-wheels-cat ul {
  list-style: none; padding: 0; margin: 24px 0 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--hk-rule);
}
.hk-wheels-cat ul li {
  padding: 18px 4px; border-bottom: 1px solid var(--hk-rule);
  font-size: 14px; display: flex; align-items: center; gap: 12px;
}
.hk-wheels-cat ul li::before {
  content: ""; width: 12px; height: 2px; background: var(--hk-orange);
}
@media (max-width: 800px) {
  .hk-wheels-cat { grid-template-columns: 1fr; }
  .hk-wheels-cat ul { grid-template-columns: 1fr; }
}

/* ---------- Marquee ---------- */
.hk-marquee {
  border-top: 1px solid var(--hk-rule);
  border-bottom: 1px solid var(--hk-rule);
  padding: 28px 0;
  overflow: hidden;
  background: var(--hk-stone);
}
.hk-marquee-track {
  display: flex;
  gap: 56px;
  animation: hk-scroll 34s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.hk-marquee-track span {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--hk-ink);
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.hk-marquee-track span::after {
  content: "◆"; color: var(--hk-orange); font-size: 0.5em;
}
.hk-marquee-track .em { font-family: var(--f-serif); font-style: italic; color: var(--hk-navy); }
@keyframes hk-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- CTA band ---------- */
.hk-cta {
  background: var(--hk-stone);
  color: var(--hk-ink);
  text-align: center;
  padding: clamp(80px, 11vw, 160px) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--hk-rule);
}
.hk-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(255, 90, 31, 0.10), transparent 60%);
}
.hk-cta > * { position: relative; z-index: 2; }
.hk-cta h2 { color: var(--hk-ink); margin: 16px 0 28px; }
.hk-cta .hk-eyebrow { color: var(--hk-orange); }
.hk-cta .hk-hero-actions { justify-content: center; margin-top: 36px; }

/* CTA grid variant (homepage) — overrides centered layout when grid is present */
.hk-cta:has(.hk-cta-grid) { text-align: left; padding: clamp(72px, 10vw, 140px) 0; }
.hk-cta:has(.hk-cta-grid)::before {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(31, 79, 184, 0.10), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(255, 90, 31, 0.10), transparent 60%);
}
.hk-cta-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: stretch;
}
.hk-cta-main { display: grid; gap: 22px; align-content: center; }
.hk-cta-main h2 { color: var(--hk-ink); margin: 0; }
.hk-cta-main p {
  color: rgba(10, 10, 10, 0.72);
  max-width: 50ch;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  margin: 0;
}
.hk-cta-main .hk-hero-actions { margin-top: 10px; justify-content: flex-start; }
.hk-cta .hk-cta-main .hk-eyebrow { color: var(--hk-orange); }

.hk-cta-card {
  background: var(--hk-ink);
  color: #fff;
  border: 1px solid var(--hk-ink);
  padding: clamp(28px, 3vw, 40px);
  display: grid;
  gap: 24px;
  align-content: start;
}
.hk-cta-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hk-rule-dark);
}
.hk-cta .hk-cta-card-head .hk-eyebrow { color: var(--hk-sand); }
.hk-cta-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}
.hk-cta-card-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #36c87a;
  box-shadow: 0 0 0 3px rgba(54, 200, 122, 0.25);
}
.hk-cta-card-rows {
  display: grid;
  gap: 0;
  margin: 0;
}
.hk-cta-card-rows > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hk-rule-dark);
  align-items: baseline;
}
.hk-cta-card-rows > div:last-child { border-bottom: 0; padding-bottom: 0; }
.hk-cta-card-rows dt {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--hk-sand);
  margin: 0;
}
.hk-cta-card-rows dd {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.2;
  letter-spacing: 0.015em;
  color: #fff;
  word-break: break-word;
}
.hk-cta-card-rows dd a { color: #fff; transition: color 0.2s ease; }
.hk-cta-card-rows dd a:hover { color: var(--hk-orange); }

@media (max-width: 880px) {
  .hk-cta-grid { grid-template-columns: 1fr; }
  .hk-cta-card-rows > div { grid-template-columns: 72px 1fr; }
}
@media (max-width: 480px) {
  .hk-cta-card-rows > div { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  .hk-cta-card-rows dd { font-size: 18px; }
}

/* ---------- Sub-page hero ---------- */
.hk-page-hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--hk-rule);
}
.hk-page-hero .crumbs {
  display: flex; gap: 10px; align-items: center; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  color: rgba(10,10,10,0.5); margin-bottom: 28px; flex-wrap: wrap;
}
.hk-page-hero .crumbs a { color: var(--hk-navy); }
.hk-page-hero .crumbs i { width: 12px; height: 1px; background: currentColor; display: inline-block; }
.hk-page-hero-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center;
}
.hk-page-hero-text { display: grid; gap: 24px; align-content: start; }
.hk-page-hero-text > * { margin: 0; }
.hk-page-hero-text .hk-eyebrow + h1,
.hk-page-hero-text h1 { margin: 0; }
.hk-page-hero-text p {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(10, 10, 10, 0.72);
  max-width: 52ch;
  line-height: 1.55;
}
.hk-page-hero-text .hk-hero-actions { margin-top: 4px; }
.hk-page-hero-visual {
  position: relative;
}
.hk-page-hero-visual .hk-img {
  aspect-ratio: 5 / 4;
  width: 100%;
}
@media (max-width: 800px) {
  .hk-page-hero-inner { grid-template-columns: 1fr; }
  .hk-page-hero-visual .hk-img { aspect-ratio: 4 / 3; }
}

/* ---------- Price list (sub-pages) ---------- */
.hk-pricelist {
  display: grid; grid-template-columns: 1.1fr 1.2fr; gap: 56px;
}
.hk-pricelist-head h2 { margin: 16px 0 18px; }
.hk-pricelist-head p { color: rgba(10,10,10,0.7); font-size: 15px; }
.hk-pricelist table {
  width: 100%; border-collapse: collapse;
}
.hk-pricelist td, .hk-pricelist th {
  text-align: left;
  padding: 22px 0;
  border-bottom: 1px solid var(--hk-rule);
  vertical-align: top;
}
.hk-pricelist td:last-child { text-align: right; white-space: nowrap; }
.hk-pricelist .item {
  font-family: var(--f-body); font-weight: 700; font-size: 15px;
}
.hk-pricelist .desc {
  font-size: 13px; color: rgba(10,10,10,0.6); margin-top: 4px; font-weight: 400;
}
.hk-pricelist .price {
  font-family: var(--f-display); font-size: 26px; color: var(--hk-navy); letter-spacing: 0.01em;
}
.hk-pricelist .price.quote { color: var(--hk-orange); }
.hk-pricelist .price em {
  font-family: var(--f-body); font-style: normal; font-size: 10px; letter-spacing: 0.2em; color: rgba(10,10,10,0.5); margin-right: 6px; font-weight: 700; text-transform: uppercase;
}
@media (max-width: 880px) { .hk-pricelist { grid-template-columns: 1fr; } }

/* ---------- Trust / feature cards ---------- */
.hk-feat {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--hk-rule); border: 1px solid var(--hk-rule);
}
.hk-feat > div {
  background: #fff; padding: 32px; display: grid; gap: 12px;
}
.hk-feat .num {
  font-family: var(--f-display); color: var(--hk-orange); font-size: 36px; line-height: 1;
}
.hk-feat h4 { margin: 0; font-family: var(--f-display); font-size: 24px; letter-spacing: 0.02em; text-transform: uppercase; }
.hk-feat p { margin: 0; font-size: 14px; color: rgba(10,10,10,0.7); }
@media (max-width: 800px) { .hk-feat { grid-template-columns: 1fr; } }

/* ---------- Process steps ---------- */
.hk-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.hk-steps .step {
  display: grid; gap: 12px; padding-top: 20px; border-top: 2px solid var(--hk-ink);
}
.hk-steps .step .n {
  font-family: var(--f-display); font-size: 14px; letter-spacing: 0.2em; color: var(--hk-navy);
}
.hk-steps .step h4 { margin: 0; font-family: var(--f-display); font-size: 26px; letter-spacing: 0.02em; text-transform: uppercase; }
.hk-steps .step p { margin: 0; font-size: 14px; color: rgba(10,10,10,0.7); }
.hk-dark .hk-steps .step { border-color: var(--hk-sand); }
.hk-dark .hk-steps .step .n { color: var(--hk-sand); }
.hk-dark .hk-steps .step p { color: rgba(255,255,255,0.7); }
@media (max-width: 800px) { .hk-steps { grid-template-columns: 1fr 1fr; } }

/* ---------- Category tiles (accessories / wheels) ---------- */
.hk-cat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.hk-cat-card {
  background: #fff; border: 1px solid var(--hk-rule); padding: 0;
  display: grid; gap: 0; overflow: hidden; transition: transform 0.2s ease;
}
.hk-cat-card .hk-img { aspect-ratio: 4 / 3; }
.hk-cat-card .body { padding: 22px; display: grid; gap: 10px; }
.hk-cat-card h4 { margin: 0; font-family: var(--f-display); font-size: 26px; letter-spacing: 0.02em; text-transform: uppercase; }
.hk-cat-card p { margin: 0; font-size: 14px; color: rgba(10,10,10,0.7); }
.hk-cat-card .foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px; border-top: 1px solid var(--hk-rule);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
}
.hk-cat-card .foot .tag { color: var(--hk-orange); }
.hk-cat-card:hover { transform: translateY(-2px); }
@media (max-width: 800px) { .hk-cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .hk-cat-grid { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.hk-form {
  background: #fff; border: 1px solid var(--hk-rule); padding: 40px;
  display: grid; gap: 22px;
}
.hk-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.hk-form label {
  display: grid; gap: 8px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
}
.hk-form input, .hk-form select, .hk-form textarea {
  font: inherit; font-size: 15px;
  border: none; border-bottom: 1.5px solid var(--hk-ink);
  padding: 12px 0 10px; background: transparent;
  letter-spacing: 0; text-transform: none; font-weight: 400;
}
.hk-form input:focus, .hk-form select:focus, .hk-form textarea:focus {
  outline: none; border-color: var(--hk-navy);
}
.hk-form textarea { min-height: 120px; resize: vertical; }
.hk-form .chips {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.hk-form .chips label {
  padding: 10px 16px; border: 1px solid var(--hk-ink); cursor: pointer;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  transition: all 0.2s ease;
}
.hk-form .chips input { display: none; }
.hk-form .chips label:has(input:checked) { background: var(--hk-ink); color: #fff; }
.hk-form .chips label:hover { background: rgba(10,10,10,0.05); }
.hk-form .chips label:has(input:checked):hover { background: var(--hk-navy); border-color: var(--hk-navy); }
.hk-form .actions { display: flex; gap: 14px; align-items: center; margin-top: 8px; }
.hk-form .actions small { color: rgba(10,10,10,0.6); font-size: 12px; }
@media (max-width: 700px) { .hk-form .row { grid-template-columns: 1fr; } .hk-form { padding: 24px; } }

/* ---------- Generic responsive utilities ---------- */
@media (max-width: 700px) {
  .hk-hero-actions { width: 100%; }
  .hk-btn { padding: 14px 20px; font-size: 12px; flex: 1 1 auto; justify-content: center; }
  .hk-hero-meta { gap: 18px; }
  .hk-hero-chip { left: 0; bottom: 12px; padding: 10px 16px; font-size: 11px; letter-spacing: 0.16em; }
  .hk-sec-head { margin-bottom: 36px; }
  .hk-stats > div { padding: 32px 22px; }
}
@media (max-width: 560px) {
  .hk-hero-visual { grid-template-columns: 1fr; }
  .hk-hero-visual .v1 { grid-row: auto; aspect-ratio: 4 / 5; }
  .hk-page-hero-text p { font-size: 15px; }
}

/* ---------- Contact / location ---------- */
.hk-contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px;
}
.hk-contact-info { display: grid; gap: 28px; align-content: start; }
.hk-contact-info .block {
  border-top: 1px solid var(--hk-rule); padding-top: 18px;
}
.hk-contact-info .block .lbl {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: rgba(10,10,10,0.55); margin-bottom: 8px;
}
.hk-contact-info .block .val {
  font-family: var(--f-display); font-size: 28px; letter-spacing: 0.02em;
}
.hk-contact-info .block .val a:hover { color: var(--hk-navy); }
.hk-contact-info .block .sub { font-size: 14px; color: rgba(10,10,10,0.7); margin-top: 4px; }
@media (max-width: 800px) { .hk-contact-grid { grid-template-columns: 1fr; } }

/* ---------- Quote / pending notes ---------- */
.hk-note {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 90, 31, 0.1); color: var(--hk-orange);
  padding: 6px 12px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
}
.hk-note::before { content: ""; width: 6px; height: 6px; background: currentColor; border-radius: 50%; }

/* ---------- Gallery ---------- */
.hk-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.hk-gallery .hk-img { aspect-ratio: 4 / 5; }
.hk-gallery .hk-img.wide { grid-column: span 2; aspect-ratio: 16 / 10; }
.hk-gallery .hk-img.tall { grid-row: span 2; aspect-ratio: 3 / 5; }
@media (max-width: 800px) {
  .hk-gallery { grid-template-columns: 1fr 1fr; }
  .hk-gallery .hk-img.wide { grid-column: span 2; }
  .hk-gallery .hk-img.tall { grid-row: span 1; aspect-ratio: 3 / 4; }
}

@media (max-width: 767px) {
    .hk-stats, .hk-brands {
    grid-template-columns: 1fr;}
  .hk-footer-logo { height: 72px; }
  .hk-footer { padding-top: 56px; }
  .hk-italic {
    font-size: 55px;
}
.hk-stats > div {
    border-right: 0;
}
.hk_2_col{grid-template-columns:1fr;}
.w40 {
    width: 100%;
}
.w60 {
    width: 100%;
}
}

/* ---------- Misc utilities ---------- */
.hk-rule { height: 1px; background: var(--hk-rule); border: 0; margin: 0; }
.hk-rule.dark { background: var(--hk-rule-dark); }
.hk-flex { display: flex; }
.hk-grid { display: grid; }
.hk-space-y > * + * { margin-top: 16px; }

/* Selection */
::selection { background: var(--hk-orange); color: #fff; }
