/* HK Oberflächentechnik — Theme Styles */

:root {
  --hk-bg: #f7f7f4;
  --hk-surface: #ffffff;
  --hk-ink: #121212;
  --hk-muted: #54545c;
  --hk-muted-light: #8a8a92;
  --hk-border: #e4e4df;
  --hk-border-dark: #2a2a2a;
  --hk-accent: #121212;
  --hk-footer: #141414;
  --hk-panel: #efefea;
  --hk-soft: #f0f0eb;
  --hk-container: 1240px;
  --hk-hero-width: calc(var(--hk-container) + 88px);
  --hk-radius: 16px;
  --hk-radius-sm: 10px;
  --hk-shadow: 0 20px 60px rgba(18, 18, 18, .06);
  --hk-shadow-sm: 0 8px 24px rgba(18, 18, 18, .05);
  --hk-ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 16px;
  color: var(--hk-ink);
  background: var(--hk-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.hk-container {
  width: min(100% - 40px, var(--hk-container));
  margin-inline: auto;
}

/* ── Header ─────────────────────────────────────────── */

.hk-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 247, 244, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hk-border);
  transition: box-shadow .25s var(--hk-ease);
}

.hk-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(18, 18, 18, .06);
}

.hk-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.hk-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.hk-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--hk-ink);
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: -.02em;
}

.hk-brand__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}

.hk-brand__text strong {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.hk-brand__text small {
  font-size: .72rem;
  color: var(--hk-muted);
  font-weight: 500;
}

.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo { max-height: 42px; width: auto; }

.hk-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hk-nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hk-nav__list a {
  display: block;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .88rem;
  color: var(--hk-muted);
  transition: color .18s var(--hk-ease), background .18s var(--hk-ease);
}

.hk-nav__list a:hover,
.hk-nav__item.is-active a {
  color: var(--hk-ink);
  background: rgba(18, 18, 18, .05);
}

.hk-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hk-border);
  border-radius: 12px;
  background: var(--hk-surface);
  padding: 0;
  cursor: pointer;
}

.hk-nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--hk-ink);
  border-radius: 2px;
}

/* ── Buttons ────────────────────────────────────────── */

.hk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s var(--hk-ease), color .2s var(--hk-ease), border-color .2s var(--hk-ease), transform .2s var(--hk-ease);
}

.hk-btn:hover { transform: translateY(-1px); }

.hk-btn--dark,
.hk-btn--primary {
  background: var(--hk-ink);
  color: #fff;
}

.hk-btn--dark:hover,
.hk-btn--primary:hover {
  background: #2a2a2a;
  color: #fff;
}

.hk-btn--ghost {
  background: transparent;
  border-color: var(--hk-border);
  color: var(--hk-ink);
}

.hk-btn--ghost:hover {
  border-color: var(--hk-ink);
  background: rgba(18, 18, 18, .03);
}

/* ── Main ───────────────────────────────────────────── */

.hk-main { min-height: 50vh; }

/* ── Hero Cinema (Home) ─────────────────────────────── */

.hk-eyebrow {
  margin: 0 0 14px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hk-muted);
}

.hk-hero-cinema .hk-eyebrow {
  color: rgba(255, 255, 255, .72);
  text-shadow: 0 1px 14px rgba(0, 0, 0, .45);
}

.hk-hero-cinema {
  padding: 20px 0 40px;
  --spray-energy: 0;
}

.hk-hero-cinema__card {
  position: relative;
  width: min(100% - 24px, var(--hk-hero-width));
  margin-inline: auto;
  min-height: clamp(520px, 82vh, 800px);
  border-radius: calc(var(--hk-radius) + 8px);
  border: 1px solid var(--hk-border);
  overflow: hidden;
  background: #ecece8;
  box-shadow: var(--hk-shadow);
}

.hk-hero-cinema__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hk-hero-cinema__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  transform: scale(1.02);
}

.hk-hero-cinema.is-static .hk-hero-cinema__video {
  display: none;
}

.hk-hero-cinema.is-static .hk-hero-cinema__media {
  background:
    url('../img/hero-spray-poster.png') 72% center / cover no-repeat;
}

.hk-hero-cinema__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(18, 18, 18, .32) 0%,
      rgba(18, 18, 18, .18) 16%,
      rgba(247, 247, 244, .36) 32%,
      rgba(247, 247, 244, .16) 48%,
      rgba(247, 247, 244, .05) 64%,
      transparent 100%);
  pointer-events: none;
}

.hk-hero-cinema__mist {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 42% at 64% 52%,
      rgba(255, 255, 255, calc(.04 + var(--spray-energy) * .14)) 0%,
      rgba(255, 255, 255, 0) 70%);
  mix-blend-mode: soft-light;
  pointer-events: none;
  transition: opacity .2s var(--hk-ease);
}

.hk-hero-cinema__body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-block: clamp(48px, 8vh, 96px);
}

.hk-hero-cinema__copy {
  max-width: 620px;
}

.hk-hero-cinema__title--base,
.hk-hero-cinema__title--base .hk-hero-cinema__line {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
}

.hk-hero-cinema__title-stack {
  position: relative;
  display: grid;
  margin-bottom: 22px;
}

.hk-hero-cinema__title-stack > .hk-hero-cinema__title {
  grid-area: 1 / 1;
}

.hk-hero-cinema__title {
  margin: 0;
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 800;
}

.hk-hero-cinema__line {
  display: block;
}

.hk-hero-cinema__line--accent {
  color: rgba(255, 255, 255, .68);
}

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

.hk-hero-cinema__title--fx {
  --spray-hue: 0deg;
  --spray-sat: 1;
  --spray-blur: 0px;
  z-index: 2;
  pointer-events: none;
  filter:
    url(#hk-spray-distort)
    hue-rotate(var(--spray-hue))
    saturate(var(--spray-sat))
    blur(var(--spray-blur));
  -webkit-mask-image: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 0, 0, .08) 18%,
    rgba(0, 0, 0, .55) 42%,
    rgba(0, 0, 0, .92) 58%,
    #000 100%);
  mask-image: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 0, 0, .08) 18%,
    rgba(0, 0, 0, .55) 42%,
    rgba(0, 0, 0, .92) 58%,
    #000 100%);
  will-change: filter, opacity;
}

.hk-hero-cinema__lead {
  margin: 0 0 28px;
  font-size: clamp(1rem, 1.6vw, 1.08rem);
  color: rgba(255, 255, 255, .78);
  max-width: 46ch;
  line-height: 1.65;
}

.hk-hero-cinema__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hk-btn--glass {
  background: rgba(18, 18, 18, .22);
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hk-btn--glass:hover {
  background: rgba(18, 18, 18, .34);
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
}

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

.hk-hero-cinema__chips li {
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(18, 18, 18, .28);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .78);
}

.hk-spray-svg {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .hk-hero-cinema__title--fx,
  .hk-hero-cinema__mist {
    display: none;
  }

  .hk-hero-cinema__video {
    display: none;
  }

  .hk-hero-cinema__media {
    background: url('../img/hero-spray-poster.png') 72% center / cover no-repeat;
  }
}

/* ── Visual panels ──────────────────────────────────── */

.hk-visual {
  position: relative;
  border-radius: calc(var(--hk-radius) + 4px);
  overflow: hidden;
  background: var(--hk-panel);
  border: 1px solid var(--hk-border);
}

.hk-visual--hero {
  aspect-ratio: 4 / 3.2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 3px;
}

.hk-visual__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--hk-muted);
  backdrop-filter: blur(8px);
}

.hk-visual__panel {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
  border-radius: var(--hk-radius);
  min-height: 100%;
}

.hk-visual__panel span {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hk-visual__panel--before {
  background:
    linear-gradient(160deg, rgba(18, 18, 18, .15), rgba(18, 18, 18, .55)),
    repeating-linear-gradient(135deg, #6b6b6b 0 2px, #555 2px 4px);
}

.hk-visual__panel--after {
  background:
    linear-gradient(160deg, rgba(18, 18, 18, .05), rgba(18, 18, 18, .25)),
    radial-gradient(circle at 30% 40%, #3a3a42, #121212 70%);
}

.hk-visual__panel--solo {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.hk-visual--finish {
  padding: 28px;
  background: var(--hk-surface);
  box-shadow: var(--hk-shadow-sm);
}

.hk-visual--studio {
  padding: 28px;
  background: var(--hk-surface);
  box-shadow: var(--hk-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hk-visual--studio strong {
  font-size: 1.1rem;
  letter-spacing: -.02em;
}

.hk-visual--studio span {
  color: var(--hk-muted);
}

.hk-visual--studio small {
  margin-top: 8px;
  color: var(--hk-muted-light);
  font-size: .85rem;
}

/* ── Stats ──────────────────────────────────────────── */

.hk-stats {
  padding: 0 0 64px;
}

.hk-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hk-stat {
  padding: 24px 28px;
  background: var(--hk-surface);
  border: 1px solid var(--hk-border);
  border-radius: var(--hk-radius);
  box-shadow: var(--hk-shadow-sm);
}

.hk-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 4px;
}

.hk-stat span {
  display: block;
  font-weight: 600;
  font-size: .92rem;
  margin-bottom: 6px;
}

.hk-stat small {
  display: block;
  font-size: .82rem;
  color: var(--hk-muted);
  line-height: 1.45;
}

/* ── Sections ───────────────────────────────────────── */

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

.hk-section--panel {
  background: var(--hk-panel);
  border-block: 1px solid var(--hk-border);
}

.hk-section--soft {
  background: var(--hk-soft);
}

.hk-section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.hk-section-title {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: -.03em;
  font-weight: 800;
}

.hk-section-text {
  margin: 0;
  color: var(--hk-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 58ch;
}

.hk-section-foot {
  margin: 32px 0 0;
  text-align: center;
}

.hk-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Cards ──────────────────────────────────────────── */

.hk-cards {
  display: grid;
  gap: 16px;
}

.hk-cards--3 {
  grid-template-columns: repeat(3, 1fr);
}

.hk-card {
  background: var(--hk-surface);
  border: 1px solid var(--hk-border);
  border-radius: var(--hk-radius);
  padding: 28px;
  box-shadow: var(--hk-shadow-sm);
  transition: transform .25s var(--hk-ease), box-shadow .25s var(--hk-ease);
}

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

.hk-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.hk-card p {
  margin: 0;
  color: var(--hk-muted);
  font-size: .92rem;
  line-height: 1.6;
}

.hk-card--compact { padding: 22px; }

.hk-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--hk-ink);
  transition: gap .18s var(--hk-ease);
}

.hk-link:hover { gap: 8px; }

/* ── Checklist ──────────────────────────────────────── */

.hk-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hk-checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--hk-muted);
  font-size: .95rem;
  line-height: 1.5;
}

.hk-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--hk-ink);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M6.5 11.5L3 8l1-1 2.5 2.5L12 4l1 1z'/%3E%3C/svg%3E") center / 10px no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M6.5 11.5L3 8l1-1 2.5 2.5L12 4l1 1z'/%3E%3C/svg%3E") center / 10px no-repeat;
}

/* ── Finish grid ────────────────────────────────────── */

.hk-finish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hk-finish-grid--wide {
  grid-template-columns: repeat(4, 1fr);
}

.hk-finish-grid span {
  padding: 14px 16px;
  border-radius: var(--hk-radius-sm);
  background: var(--hk-bg);
  border: 1px solid var(--hk-border);
  font-size: .88rem;
  font-weight: 500;
  text-align: center;
}

/* ── Steps ──────────────────────────────────────────── */

.hk-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hk-step {
  padding: 24px;
  background: var(--hk-surface);
  border: 1px solid var(--hk-border);
  border-radius: var(--hk-radius);
}

.hk-step__num {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--hk-muted-light);
  margin-bottom: 12px;
}

.hk-step h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.hk-step p {
  margin: 0;
  font-size: .88rem;
  color: var(--hk-muted);
  line-height: 1.55;
}

/* ── CTA Band ───────────────────────────────────────── */

.hk-cta-band {
  padding: 56px 0;
  background: var(--hk-ink);
  color: #fff;
}

.hk-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.hk-cta-band__title {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.03em;
}

.hk-cta-band__text {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  max-width: 52ch;
  font-size: .95rem;
  line-height: 1.6;
}

.hk-cta-band .hk-btn--dark {
  background: #fff;
  color: var(--hk-ink);
  flex-shrink: 0;
}

.hk-cta-band .hk-btn--dark:hover {
  background: #f0f0eb;
}

/* ── Page Hero ──────────────────────────────────────── */

.hk-page-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--hk-border);
}

.hk-page-hero__title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 800;
  max-width: 18ch;
}

.hk-page-hero__lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--hk-muted);
  max-width: 58ch;
  line-height: 1.65;
}

/* ── Prices ─────────────────────────────────────────── */

.hk-price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

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

.hk-price-card__size {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--hk-muted);
  margin-bottom: 12px;
}

.hk-price-card__price {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}

.hk-price-card p {
  margin: 0;
  font-size: .85rem;
  color: var(--hk-muted);
}

.hk-note {
  margin: 0;
  font-size: .88rem;
  color: var(--hk-muted-light);
  text-align: center;
  max-width: 62ch;
  margin-inline: auto;
}

/* ── Region cloud ───────────────────────────────────── */

.hk-region-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hk-region-cloud span {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--hk-surface);
  border: 1px solid var(--hk-border);
  font-size: .88rem;
  font-weight: 500;
}

/* ── Inquiry form ───────────────────────────────────── */

.hk-inquiry {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.hk-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hk-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hk-form label span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--hk-muted);
}

.hk-form input,
.hk-form select,
.hk-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--hk-border);
  border-radius: var(--hk-radius-sm);
  background: var(--hk-surface);
  font: inherit;
  color: var(--hk-ink);
  transition: border-color .18s var(--hk-ease);
}

.hk-form input:focus,
.hk-form select:focus,
.hk-form textarea:focus {
  outline: none;
  border-color: var(--hk-ink);
}

.hk-form__full { grid-column: 1 / -1; }

.hk-upload {
  padding: 28px;
  border: 2px dashed var(--hk-border);
  border-radius: var(--hk-radius);
  text-align: center;
  background: var(--hk-soft);
}

.hk-upload strong {
  display: block;
  margin-bottom: 6px;
}

.hk-upload p {
  margin: 0;
  font-size: .85rem;
  color: var(--hk-muted);
}

.hk-form__submit { margin-top: 20px; }

.hk-form__note {
  margin: 12px 0 0;
  font-size: .8rem;
  color: var(--hk-muted-light);
}

.hk-inquiry__aside {
  display: grid;
  gap: 16px;
}

.hk-mini-steps {
  margin: 0;
  padding-left: 20px;
  color: var(--hk-muted);
  font-size: .9rem;
  line-height: 1.7;
}

/* ── Generic page / blog ────────────────────────────── */

.hk-page { padding: 56px 0 88px; }

.hk-page--center .hk-page__inner {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.hk-page__title {
  margin: 0 0 20px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -.03em;
}

.hk-content > *:first-child { margin-top: 0; }
.hk-content > *:last-child { margin-bottom: 0; }

.hk-post + .hk-post {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--hk-border);
}

.hk-post__title { margin: 0 0 8px; }
.hk-post__title a { text-decoration: none; }

/* ── Footer ─────────────────────────────────────────── */

.hk-footer {
  background: var(--hk-footer);
  color: rgba(255, 255, 255, .75);
  padding: 64px 0 0;
}

.hk-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hk-border-dark);
}

.hk-footer__brand strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
}

.hk-footer__brand p {
  margin: 0 0 8px;
  font-size: .88rem;
  line-height: 1.6;
  max-width: 32ch;
}

.hk-footer__family {
  margin-top: 16px !important;
  font-size: .78rem !important;
  color: rgba(255, 255, 255, .45) !important;
}

.hk-footer__col h3 {
  margin: 0 0 14px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.hk-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.hk-footer__col a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .7);
  transition: color .18s var(--hk-ease);
}

.hk-footer__col a:hover { color: #fff; }

.hk-footer__contact li {
  font-size: .88rem;
  line-height: 1.5;
}

.hk-footer__bottom {
  padding: 20px 0 28px;
}

.hk-footer__bottom p {
  margin: 0;
  font-size: .78rem;
  color: rgba(255, 255, 255, .35);
}

/* ── Scroll reveal ──────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--hk-ease), transform .7s var(--hk-ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── A11y ───────────────────────────────────────────── */

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Responsive ─────────────────────────────────────── */

@media (max-width: 1024px) {
  .hk-split,
  .hk-inquiry {
    grid-template-columns: 1fr;
  }

  .hk-cards--3,
  .hk-stats__grid,
  .hk-steps,
  .hk-price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hk-finish-grid--wide {
    grid-template-columns: repeat(2, 1fr);
  }

  .hk-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .hk-nav-toggle { display: inline-block; }

  .hk-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    background: var(--hk-surface);
    border: 1px solid var(--hk-border);
    border-radius: var(--hk-radius);
    box-shadow: var(--hk-shadow);
  }

  .hk-nav.is-open { display: flex; }

  .hk-nav__list {
    flex-direction: column;
    align-items: stretch;
  }

  .hk-nav__cta { width: 100%; justify-content: center; }

  .hk-cards--3,
  .hk-stats__grid,
  .hk-steps,
  .hk-price-grid,
  .hk-finish-grid,
  .hk-finish-grid--wide {
    grid-template-columns: 1fr;
  }

  .hk-form__grid { grid-template-columns: 1fr; }

  .hk-footer__grid { grid-template-columns: 1fr; }

  .hk-cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hk-cta-band .hk-btn--dark { width: 100%; justify-content: center; }

  .hk-hero-cinema { padding-top: 12px; }

  .hk-hero-cinema__card { width: min(100% - 20px, var(--hk-hero-width)); min-height: 480px; }

  .hk-hero-cinema__video { object-position: 80% center; }

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