:root {
  --hk-orange: #ea5b1b;
  --hk-ink: #1c1c1c;
  --hk-muted: #5c5c5c;
  --hk-paper: #f6f4f1;
  --hk-dark: #303030;
  --hk-line: rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, sans-serif;
  color: var(--hk-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.goog-te-banner-frame, .skiptranslate, iframe.skiptranslate { display: none !important; }
#google_translate_element { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
body { top: 0 !important; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--hk-line);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 92px;
}
.logo img.haukes-brand {
  height: 58px;
  width: auto;
  max-width: 240px;
}
.nav {
  display: flex;
  gap: 22px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a.is-active { color: var(--hk-orange); border-bottom-color: var(--hk-orange); }
.header-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  color: #333;
  white-space: nowrap;
}
.header-meta a:hover { color: var(--hk-orange); }
.header-meta svg { color: var(--hk-orange); vertical-align: -2px; margin-right: 4px; }

.hk-lang { position: relative; }
.hk-lang-toggle {
  height: 36px;
  padding: 0 12px;
  border: 1px solid #ece8e3;
  border-radius: 999px;
  background: #fff;
  font: 600 12px/1 Poppins, sans-serif;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.hk-lang.is-open .hk-lang-toggle, .hk-lang-toggle:hover { border-color: var(--hk-orange); }
.hk-lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 176px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid #efebe6;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.12);
  display: none;
}
.hk-lang.is-open .hk-lang-menu { display: block; }
.hk-lang-menu button {
  display: block;
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: 500 13px/1.2 Poppins, sans-serif;
}
.hk-lang-menu button:hover { background: #f6f3ef; }
.hk-lang-menu button.is-active { color: var(--hk-orange); font-weight: 600; }

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  background: #1c1c1c center/cover no-repeat;
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55));
}
.hero-box {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.88);
  color: var(--hk-ink);
  padding: 40px 48px;
  border-radius: 22px;
  max-width: 720px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(28,28,28,.18);
}
.hero-box h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 54px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.hero-box p { margin: 0 0 22px; color: var(--hk-muted); font-size: 18px; }

.btn {
  display: inline-block;
  background: var(--hk-orange);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: 0;
  cursor: pointer;
}
.btn:hover { filter: brightness(1.05); }

.band {
  background: #1f1f1f;
  border-bottom: 3px solid var(--hk-orange);
  color: #fff;
  text-align: center;
  padding: 22px 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.section { padding: 72px 0; }
.section.dark { background: var(--hk-dark); color: #e5e5e5; }
.section.paper { background: var(--hk-paper); }
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.section h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 500;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section.dark h2 { color: #fff; }
.lead { line-height: 1.8; font-size: 16px; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  transition: transform .35s ease, box-shadow .35s ease;
  color: var(--hk-ink);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(0,0,0,.18); }
.card img, .card .ph {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #22c55e url("/bilder/placeholder.svg") center/cover no-repeat;
}
.card h3 {
  margin: 0;
  padding: 16px 16px 6px;
  font-size: 16px;
}
.card .more {
  display: block;
  padding: 0 16px 16px;
  color: var(--hk-orange);
  font-size: 13px;
  font-weight: 600;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery img, .gallery .ph {
  height: 180px;
  width: 100%;
  object-fit: contain;
  background: #262626 url("/bilder/placeholder.svg") center/cover no-repeat;
  border-radius: 14px;
  padding: 8px;
}

.page-hero {
  height: 40vh;
  min-height: 220px;
  display: grid;
  place-items: center;
  background: #222 center/cover no-repeat;
  position: relative;
  color: #fff;
}
.page-hero::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.page-hero h1 { position: relative; z-index: 1; font-size: clamp(28px, 4vw, 40px); margin: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contact-card {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  padding: 22px;
}
.contact-card h3 { margin: 0 0 10px; color: #fff; font-size: 16px; }
.contact-card p { margin: 0; line-height: 1.7; font-size: 14px; }

form { display: grid; gap: 12px; margin-top: 18px; }
input, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: #fff;
  font: 15px/1.4 Poppins, sans-serif;
}
.site-footer {
  background: #1a1a1a;
  color: #ddd;
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}
.site-footer h4 { color: #fff; margin: 0 0 12px; }
.site-footer a:hover { color: var(--hk-orange); }
.legal { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 980px) {
  .grid-2, .cards, .gallery, .contact-grid, .footer-grid, .header-inner { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .nav { justify-content: flex-start; gap: 14px; }
  .header-meta { font-size: 11px; }
  .hero-box { margin: 20px; padding: 28px; }
}
@media (max-width: 640px) {
  .cards, .gallery, .contact-grid, .footer-grid, .grid-2 { grid-template-columns: 1fr; }
  .header-meta span { display: none; }
}
