/* ==========================================================================
   BOLLNÄS BILVERKSTAD AB
   Designsystem & stilmall för publika hemsidan
   ========================================================================== */

/* ------------------------------------------------------------ 1. Variabler */
:root {
  /* Bas */
  --bg:            #06070A;
  --bg-alt:        #0A0C11;
  --panel:         #0E1117;
  --panel-2:       #141821;
  --line:          rgba(255, 255, 255, .07);
  --line-strong:   rgba(255, 255, 255, .13);

  /* Text */
  --text:          #E9ECF3;
  --text-soft:     #B4BCCC;
  --text-muted:    #7C8699;

  /* Guld */
  --gold:          #C9A24A;
  --gold-light:    #F0DCA4;
  --gold-dark:     #7E6222;
  --gold-grad:     linear-gradient(135deg, #6E5320 0%, #C9A24A 28%, #F2E0AC 50%, #C9A24A 72%, #6E5320 100%);

  /* Blå */
  --blue:          #1B6BFF;
  --blue-light:    #5C9BFF;
  --blue-deep:     #0A3AA8;
  --blue-grad:     linear-gradient(135deg, #0A3AA8 0%, #1B6BFF 45%, #6FA8FF 62%, #1B6BFF 80%, #0A3AA8 100%);
  --blue-glow:     rgba(27, 107, 255, .45);

  /* Mått */
  --radius:        14px;
  --radius-lg:     22px;
  --container:     1240px;
  --nav-h:         84px;

  --ease:          cubic-bezier(.22, .61, .36, 1);
  --ease-out:      cubic-bezier(.16, 1, .3, 1);

  --shadow:        0 20px 50px -22px rgba(0, 0, 0, .95);
  --shadow-blue:   0 18px 46px -18px rgba(27, 107, 255, .55);

  --font-display:  'Saira Condensed', 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:     'Barlow', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ------------------------------------------------------------- 2. Grunden */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.005em;
  margin: 0 0 .5em;
  text-transform: uppercase;
  font-style: italic;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--blue); color: #fff; }

::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #05060A; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
  border-radius: 10px;
  border: 2px solid #05060A;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--gold), var(--gold-light)); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: #000; padding: 12px 20px; font-weight: 700;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------------------------------------------------------- 3. Byggstenar */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 26px; }

.section { position: relative; padding: 118px 0; }
.section--tight { padding: 84px 0; }
.section--alt { background: var(--bg-alt); }

/* Hexagonmönster (från visitkortets baksida) */
.hexbg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='97' viewBox='0 0 56 97'%3E%3Cpath d='M28 0L56 16v32L28 64 0 48V16z' fill='none' stroke='%23ffffff' stroke-opacity='.045' stroke-width='1.2'/%3E%3Cpath d='M28 64l28 16v32L28 128 0 112V80z' fill='none' stroke='%23ffffff' stroke-opacity='.045' stroke-width='1.2'/%3E%3C/svg%3E");
  opacity: .8;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 78%);
}

/* Guldlinje som avdelare */
.hairline {
  height: 1px; border: 0; margin: 0;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 74, .55), rgba(27, 107, 255, .45), transparent);
}

/* Sektionsrubrik */
.head { max-width: 720px; margin-bottom: 58px; }
.head--center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ''; width: 34px; height: 2px; flex: none;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.head--center .eyebrow::after {
  content: ''; width: 34px; height: 2px; flex: none;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.head h2 {
  font-size: clamp(2.3rem, 5.2vw, 3.6rem);
  margin-bottom: 18px;
}
.head p {
  color: var(--text-soft);
  font-size: 1.06rem;
  max-width: 62ch;
}
.head--center p { margin-left: auto; margin-right: auto; }

/* Kursiv text hanger ut over sin box - lite extra luft sa sista bokstaven
   inte klipps bort av background-clip: text. */
.grad, .grad-blue, .service__price, .pricerow b, .about__stamp b, .stat b {
  padding-right: .12em;
  margin-right: -.06em;
}
.grad {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.grad-blue {
  background: var(--blue-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Knappar */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  padding: 16px 34px;
  font-family: var(--font-display);
  font-weight: 700; font-style: italic;
  font-size: 1.02rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 4px;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), filter .35s var(--ease);
  white-space: nowrap;
  overflow: hidden;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-22deg);
  transition: left .75s var(--ease-out);
}
.btn:hover::after { left: 150%; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--primary {
  background: var(--blue-grad);
  background-size: 200% 100%;
  color: #fff;
  box-shadow: var(--shadow-blue), inset 0 1px 0 rgba(255, 255, 255, .28);
}
.btn--primary:hover { box-shadow: 0 22px 54px -16px var(--blue-glow), inset 0 1px 0 rgba(255, 255, 255, .4); }

.btn--gold {
  background: var(--gold-grad);
  color: #14100A;
  box-shadow: 0 16px 40px -18px rgba(201, 162, 74, .7), inset 0 1px 0 rgba(255, 255, 255, .45);
}

.btn--ghost {
  background: rgba(255, 255, 255, .03);
  color: var(--gold-light);
  box-shadow: inset 0 0 0 1.5px rgba(201, 162, 74, .45);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--gold), 0 16px 34px -20px rgba(201, 162, 74, .6); color: #fff; }

.btn--sm { padding: 12px 24px; font-size: .93rem; clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px); }
.btn--block { width: 100%; }

/* Kort med gradientkant */
.card {
  position: relative;
  background: linear-gradient(165deg, rgba(20, 24, 33, .95), rgba(9, 11, 16, .95));
  border-radius: var(--radius);
  padding: 34px 30px;
  overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
  isolation: isolate;
}
.card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(150deg, rgba(201, 162, 74, .42), rgba(255, 255, 255, .05) 38%, rgba(27, 107, 255, .32));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
  transition: opacity .45s var(--ease);
}
.card::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background: radial-gradient(560px circle at var(--mx, 50%) var(--my, 0%), rgba(27, 107, 255, .16), transparent 60%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.card:hover::after { opacity: 1; }

/* Ikonbricka i hexagonform (som på visitkortet) */
.hexicon {
  position: relative;
  width: 56px; height: 62px; flex: none;
  display: grid; place-items: center;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: var(--gold-grad);
  transition: transform .45s var(--ease-out);
}
.hexicon::before {
  content: ''; position: absolute; inset: 1.6px;
  clip-path: inherit;
  background: linear-gradient(160deg, #12161F, #080A0E);
}
.hexicon svg { position: relative; width: 25px; height: 25px; color: var(--gold-light); }
.card:hover .hexicon { transform: rotate(-6deg) scale(1.06); }
.hexicon--blue { background: var(--blue-grad); }
.hexicon--blue svg { color: var(--blue-light); }

/* Scroll-animation */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.reveal[data-delay="4"] { transition-delay: .36s; }
.reveal[data-delay="5"] { transition-delay: .45s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ------------------------------------------------------- 4. Laddningsskärm */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: var(--bg);
  transition: opacity .6s var(--ease), visibility .6s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader img { width: 190px; filter: drop-shadow(0 0 34px rgba(27, 107, 255, .45)); }
.preloader__bar {
  margin-top: 26px; width: 190px; height: 2px; background: rgba(255, 255, 255, .1); overflow: hidden; border-radius: 2px;
}
.preloader__bar i {
  display: block; height: 100%; width: 40%;
  background: var(--gold-grad);
  animation: load 1.1s var(--ease) infinite;
}
@keyframes load { 0% { transform: translateX(-110%); } 100% { transform: translateX(320%); } }

/* --------------------------------------------------------------- 5. Toppbar */
.topbar {
  position: relative; z-index: 60;
  background: linear-gradient(90deg, #0A0C11, #10141C 50%, #0A0C11);
  border-bottom: 1px solid var(--line);
  font-size: .87rem;
  color: var(--text-muted);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 44px; }
.topbar__list { display: flex; align-items: center; gap: 26px; }
.topbar__item { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.topbar__item svg { width: 15px; height: 15px; color: var(--gold); }
.topbar a:hover { color: var(--gold-light); }
.topbar__socials { display: flex; gap: 8px; }
.topbar__socials a {
  width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--line-strong); transition: .3s var(--ease);
}
.topbar__socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.topbar__socials svg { width: 15px; height: 15px; }
.open-badge { display: inline-flex; align-items: center; gap: 7px; }
.open-badge i {
  width: 8px; height: 8px; border-radius: 50%; background: #2ED573;
  box-shadow: 0 0 0 3px rgba(46, 213, 115, .18);
  animation: pulse 2.2s infinite;
}
.open-badge.closed i { background: #FF4757; box-shadow: 0 0 0 3px rgba(255, 71, 87, .18); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* ------------------------------------------------------------ 6. Navigering */
.nav {
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(6, 7, 10, .72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), height .4s var(--ease);
}
.nav.stuck {
  height: 72px;
  background: rgba(6, 7, 10, .93);
  border-bottom-color: var(--line);
  box-shadow: 0 18px 42px -30px #000;
}
.nav__inner { display: flex; align-items: center; gap: 28px; height: 100%; }
.nav__logo img { height: 56px; width: auto; transition: height .4s var(--ease); filter: drop-shadow(0 4px 18px rgba(27, 107, 255, .3)); }
.nav.stuck .nav__logo img { height: 46px; }

.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__links a {
  position: relative;
  padding: 10px 15px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1rem;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--text-soft);
  white-space: nowrap;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ''; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav__links a:hover, .nav__links a.active { color: #fff; }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); transform-origin: left; }

.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 11px;
  padding-right: 16px; margin-right: 2px;
  border-right: 1px solid var(--line-strong);
}
.nav__phone svg { width: 19px; height: 19px; color: var(--gold); }
.nav__phone span { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; letter-spacing: .04em; white-space: nowrap; }
.nav__phone:hover span { color: var(--gold-light); }

.burger { display: none; width: 44px; height: 44px; position: relative; }
.burger span {
  position: absolute; left: 11px; right: 11px; height: 2px; background: var(--gold);
  transition: .35s var(--ease); border-radius: 2px;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* --------------------------------------------------------------- 7. Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h) - 44px);
  display: flex; align-items: center;
  padding: 90px 0 100px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  position: absolute; right: -4%; top: 0; height: 100%; width: 56%;
  object-fit: cover; object-position: 38% center;
  opacity: .72;
  filter: contrast(1.12) saturate(1.06) brightness(.96);
  mask-image: linear-gradient(100deg, transparent 4%, #000 46%);
  -webkit-mask-image: linear-gradient(100deg, transparent 4%, #000 46%);
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(880px circle at 12% 46%, rgba(27, 107, 255, .16), transparent 62%),
    radial-gradient(620px circle at 88% 80%, rgba(201, 162, 74, .1), transparent 62%),
    linear-gradient(180deg, rgba(6, 7, 10, .3) 0%, rgba(6, 7, 10, 0) 32%, rgba(6, 7, 10, .95) 96%);
}
/* Chevron som på visitkortet */
.hero__chevron {
  position: absolute; z-index: 1; right: 31%; top: -10%; bottom: -10%; width: 210px;
  pointer-events: none;
}
.hero__chevron i {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, var(--blue) 30%, var(--blue-light) 50%, var(--blue) 70%, transparent);
  clip-path: polygon(0 0, 8px 0, 100% 50%, 8px 100%, 0 100%, calc(100% - 8px) 50%);
  opacity: .45;
  filter: drop-shadow(0 0 22px rgba(27, 107, 255, .5));
}
.hero__chevron i:last-child {
  transform: translateX(-30px);
  background: linear-gradient(180deg, transparent, var(--gold-dark) 28%, var(--gold-light) 50%, var(--gold-dark) 72%, transparent);
  opacity: .5;
  filter: drop-shadow(0 0 16px rgba(201, 162, 74, .35));
}

.hero__inner { position: relative; z-index: 2; max-width: 700px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 9px 20px 9px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(201, 162, 74, .3);
  backdrop-filter: blur(10px);
  font-size: .84rem; letter-spacing: .19em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-light);
  margin-bottom: 30px;
}
.hero__badge b {
  display: grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-grad); color: #100C05;
}
.hero__badge b svg { width: 13px; height: 13px; }

.hero h1 {
  font-size: clamp(2.9rem, 7.2vw, 5.4rem);
  margin-bottom: 26px;
  text-shadow: 0 12px 60px rgba(0, 0, 0, .8);
}
.hero__text { font-size: 1.13rem; color: var(--text-soft); max-width: 58ch; margin-bottom: 38px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }

.hero__trust { display: flex; flex-wrap: wrap; gap: 14px 30px; }
.hero__trust div { display: inline-flex; align-items: center; gap: 10px; font-size: .93rem; color: var(--text-soft); }
.hero__trust svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3; display: grid; place-items: center; gap: 9px;
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: var(--text-muted);
}
.hero__scroll i {
  width: 24px; height: 38px; border: 1.5px solid var(--line-strong); border-radius: 14px; position: relative;
}
.hero__scroll i::after {
  content: ''; position: absolute; left: 50%; top: 8px; width: 3px; height: 7px; border-radius: 3px;
  background: var(--gold); transform: translateX(-50%);
  animation: wheel 1.9s var(--ease) infinite;
}
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, -5px); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 14px); } }

/* ---------------------------------------------------------------- 8. USP */
.usp { position: relative; margin-top: -1px; background: linear-gradient(180deg, var(--bg-alt), var(--bg)); border-top: 1px solid var(--line); }
.usp__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.usp__item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 40px 30px;
  border-right: 1px solid var(--line);
  transition: background .4s var(--ease);
}
.usp__item:last-child { border-right: 0; }
.usp__item:hover { background: rgba(255, 255, 255, .022); }
.usp__item h3 { font-size: 1.16rem; margin-bottom: 6px; font-style: italic; }
.usp__item p { font-size: .94rem; color: var(--text-muted); line-height: 1.55; }

/* ----------------------------------------------------------- 9. Tjänster */
.services__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 22px; }
.service { display: flex; flex-direction: column; }
.service__top { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.service h3 { font-size: 1.32rem; margin: 0; }
.service p { color: var(--text-muted); font-size: .96rem; line-height: 1.6; flex: 1; margin-bottom: 22px; }
.service__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.service__price {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 1.16rem; letter-spacing: .02em;
}
.service__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .86rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--blue-light); transition: gap .3s var(--ease), color .3s var(--ease);
}
.service__link svg { width: 15px; height: 15px; }
.service:hover .service__link { gap: 14px; color: #fff; }

/* -------------------------------------------------------------- 10. Om oss */
.about__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; }
.about__media { position: relative; }
.about__media img {
  width: 100%; border-radius: var(--radius-lg);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 56px), calc(100% - 56px) 100%, 0 100%);
  box-shadow: var(--shadow);
}
.about__media::before {
  content: ''; position: absolute; inset: -20px 30px 26px -20px;
  border: 1px solid rgba(201, 162, 74, .32);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about__stamp {
  position: absolute; left: -26px; bottom: 20px;
  background: linear-gradient(160deg, #141821, #090B10);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(201, 162, 74, .32);
  text-align: center;
}
.about__stamp b { display: block; font-family: var(--font-display); font-style: italic; font-size: 2.5rem; line-height: 1; }
.about__stamp span { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); }

.about__text p { color: var(--text-soft); }
.about__list { list-style: none; padding: 0; margin: 28px 0 34px; display: grid; gap: 13px; }
.about__list li { display: flex; align-items: flex-start; gap: 13px; font-size: .99rem; color: var(--text-soft); }
.about__list svg { width: 20px; height: 20px; flex: none; color: var(--gold); margin-top: 3px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 84px; }
.stat {
  text-align: center; padding: 34px 18px;
  background: linear-gradient(165deg, rgba(20, 24, 33, .8), rgba(9, 11, 16, .8));
  border-radius: var(--radius);
  position: relative; overflow: hidden;
}
.stat::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: var(--gold-grad);
  transform: scaleX(.25); transition: transform .6s var(--ease-out);
}
.stat:hover::before { transform: scaleX(1); }
.stat b {
  display: block; font-family: var(--font-display); font-style: italic; font-weight: 800;
  font-size: clamp(2.4rem, 4.4vw, 3.3rem); line-height: 1; margin-bottom: 10px;
}
.stat span { font-size: .85rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-muted); }

/* -------------------------------------------------------------- 11. Priser */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
.tab {
  padding: 12px 24px;
  font-family: var(--font-display); font-weight: 600; font-size: .97rem;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 3px;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: .35s var(--ease);
}
.tab:hover { color: var(--text); background: rgba(255, 255, 255, .06); }
.tab.active {
  color: #0F0B04; background: var(--gold-grad);
  box-shadow: 0 12px 30px -16px rgba(201, 162, 74, .8);
}

.pricelist { display: grid; gap: 0; }
.pricerow {
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center;
  padding: 21px 24px;
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease), padding-left .3s var(--ease);
  position: relative;
}
.pricerow::before {
  content: ''; position: absolute; left: 0; top: 12%; bottom: 12%; width: 2px;
  background: var(--gold-grad); transform: scaleY(0); transition: transform .35s var(--ease-out);
}
.pricerow:hover { background: rgba(255, 255, 255, .028); padding-left: 32px; }
.pricerow:hover::before { transform: scaleY(1); }
.pricerow h4 { font-size: 1.1rem; margin: 0 0 3px; font-style: normal; text-transform: none; letter-spacing: 0; font-weight: 700; }
.pricerow small { color: var(--text-muted); font-size: .89rem; }
.pricerow b {
  font-family: var(--font-display); font-style: italic; font-size: 1.35rem;
  white-space: nowrap;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pricenote {
  margin-top: 30px; padding: 20px 24px;
  border-radius: var(--radius);
  background: rgba(27, 107, 255, .07);
  box-shadow: inset 0 0 0 1px rgba(27, 107, 255, .22);
  display: flex; gap: 15px; align-items: flex-start;
  font-size: .93rem; color: var(--text-soft);
}
.pricenote svg { width: 21px; height: 21px; color: var(--blue-light); flex: none; margin-top: 2px; }

/* ------------------------------------------------------------- 12. Galleri */
.gallery__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: 230px; gap: 16px;
}
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer;
  background: var(--panel);
}
.gallery__item:nth-child(6n + 1) { grid-row: span 2; }
.gallery__grid.few .gallery__item { grid-row: span 1 !important; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out), filter .6s var(--ease); }
.gallery__item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 7, 10, .9));
  opacity: .75; transition: opacity .5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.09); }
.gallery__item:hover::after { opacity: 1; }
.gallery__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px; font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 1.06rem;
  transform: translateY(8px); opacity: .85;
  transition: .5s var(--ease-out);
}
.gallery__item:hover .gallery__cap { transform: none; opacity: 1; }
.gallery__zoom {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(6, 7, 10, .6); backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  opacity: 0; transform: scale(.8); transition: .45s var(--ease-out);
}
.gallery__item:hover .gallery__zoom { opacity: 1; transform: none; }
.gallery__zoom svg { width: 17px; height: 17px; color: var(--gold); }

.lightbox {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(3, 4, 6, .95); backdrop-filter: blur(12px);
  display: grid; place-items: center; padding: 40px;
  opacity: 0; visibility: hidden; transition: .45s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 84vh; border-radius: var(--radius); box-shadow: var(--shadow); }
.lightbox__cap { margin-top: 18px; text-align: center; color: var(--text-soft); }
.lightbox__close, .lightbox__nav {
  position: absolute; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .06); border: 1px solid var(--line-strong);
  transition: .3s var(--ease);
}
.lightbox__close { top: 28px; right: 28px; }
.lightbox__nav.prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lightbox__nav.next { right: 28px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); color: #000; }
.lightbox svg { width: 21px; height: 21px; }

/* ------------------------------------------------------------ 13. Omdömen */
.reviews__wrap { position: relative; }
.reviews__track {
  display: flex; gap: 22px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px 26px;
  scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar { display: none; }
.review { scroll-snap-align: start; flex: 0 0 min(430px, 84vw); display: flex; flex-direction: column; }
.review__stars { display: flex; gap: 3px; margin-bottom: 18px; }
.review__stars svg { width: 19px; height: 19px; color: var(--gold); }
.review__stars svg.off { color: rgba(255, 255, 255, .14); }
.review p { font-size: 1.02rem; color: var(--text-soft); flex: 1; font-style: italic; }
.review__who { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.review__av {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-style: italic; font-size: 1.15rem; color: #0F0B04;
  background: var(--gold-grad);
}
.review__who b { display: block; font-size: 1rem; }
.review__who span { font-size: .86rem; color: var(--text-muted); }
.review__quote {
  position: absolute; top: 18px; right: 22px;
  font-family: Georgia, serif; font-size: 5rem; line-height: 1; color: rgba(255, 255, 255, .05);
}
.reviews__ctrls { display: flex; gap: 10px; justify-content: center; margin-top: 12px; }
.reviews__ctrls button {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong); color: var(--text-soft);
  transition: .3s var(--ease);
}
.reviews__ctrls button:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.reviews__ctrls svg { width: 18px; height: 18px; }

/* --------------------------------------------------------- 14. Öppettider */
.hours__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 26px; align-items: stretch; }
.hours__card { padding: 40px 38px; }
.hours__list { list-style: none; margin: 0; padding: 0; }
.hours__list li {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 15px 0; border-bottom: 1px dashed rgba(255, 255, 255, .08);
}
.hours__list li:last-child { border-bottom: 0; }
.hours__list li.today {
  padding-left: 16px; padding-right: 16px; margin: 0 -16px;
  background: linear-gradient(90deg, rgba(201, 162, 74, .12), transparent);
  border-radius: 8px;
}
.hours__day { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; letter-spacing: .05em; text-transform: uppercase; }
.hours__day em { font-style: normal; color: var(--gold); font-size: .74rem; letter-spacing: .16em; margin-left: 10px; }
.hours__time { font-variant-numeric: tabular-nums; color: var(--text-soft); }
.hours__time.closed { color: #FF6B7A; }
.hours__note { display: block; font-size: .8rem; color: var(--text-muted); }

.urgent {
  padding: 40px 38px;
  background:
    linear-gradient(150deg, rgba(27, 107, 255, .2), rgba(9, 11, 16, .96) 62%),
    var(--panel);
  display: flex; flex-direction: column;
}
.urgent .hexicon { margin-bottom: 24px; }
.urgent h3 { font-size: 1.7rem; }
.urgent p { color: var(--text-soft); flex: 1; }
.urgent__phone {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 22px;
  font-family: var(--font-display); font-style: italic; font-weight: 800;
  font-size: clamp(1.5rem, 3.4vw, 2.05rem);
  letter-spacing: .02em;
}
.urgent__phone svg { width: 28px; height: 28px; color: var(--gold); flex: none; }
.urgent__phone:hover { color: var(--gold-light); }

/* --------------------------------------------------------- 15. Bokningsdel */
.booking {
  position: relative;
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 40%, var(--bg) 100%);
}
.booking__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.booking__side .head { margin-bottom: 34px; }
.booking__points { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.booking__points li { display: flex; gap: 16px; }
.booking__points b { display: block; font-family: var(--font-display); font-style: italic; font-size: 1.1rem; margin-bottom: 3px; }
.booking__points p { font-size: .93rem; color: var(--text-muted); margin: 0; }
.booking__num {
  width: 38px; height: 38px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  background: rgba(201, 162, 74, .13); color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(201, 162, 74, .35);
}

.form { padding: 42px 40px; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 600; color: var(--text-muted);
}
.field label span { color: var(--gold); }
.field input, .field select, .field textarea {
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 1rem;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 122px; font-family: inherit; }
.field select { appearance: none; cursor: pointer; padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A24A' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; background-size: 17px;
}
.field select option { background: #10141C; color: var(--text); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(27, 107, 255, .6);
  background: rgba(27, 107, 255, .06);
  box-shadow: 0 0 0 4px rgba(27, 107, 255, .12);
}
.field input::placeholder, .field textarea::placeholder { color: #5C657A; }
.field input[type="date"], .field input[type="time"] { color-scheme: dark; }
.form__foot { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.form__note { font-size: .85rem; color: var(--text-muted); display: flex; gap: 11px; align-items: flex-start; }
.form__note svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 3px; }

.form__done {
  display: none;
  text-align: center; padding: 30px 10px;
}
.form.sent .form__grid, .form.sent .form__foot { display: none; }
.form.sent .form__done { display: block; animation: pop .6s var(--ease-out); }
.form__done .hexicon { margin: 0 auto 22px; width: 72px; height: 80px; }
.form__done .hexicon svg { width: 32px; height: 32px; color: #3DDC84; }
.form__done h3 { font-size: 1.85rem; }
.form__done p { color: var(--text-soft); max-width: 44ch; margin: 0 auto 24px; }
@keyframes pop { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }

/* ---------------------------------------------------------------- 16. FAQ */
.faq__list { display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
.faq__item {
  background: linear-gradient(165deg, rgba(20, 24, 33, .8), rgba(9, 11, 16, .8));
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px var(--line);
  overflow: hidden;
  transition: box-shadow .4s var(--ease);
}
.faq__item.open { box-shadow: inset 0 0 0 1px rgba(201, 162, 74, .35); }
.faq__q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 23px 26px;
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: 1.16rem; letter-spacing: .01em;
  transition: color .3s var(--ease);
}
.faq__q:hover { color: var(--gold-light); }
.faq__q i {
  width: 30px; height: 30px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px var(--line-strong);
  transition: .4s var(--ease-out);
}
.faq__q i svg { width: 15px; height: 15px; color: var(--gold); }
.faq__item.open .faq__q i { transform: rotate(180deg); background: var(--gold); }
.faq__item.open .faq__q i svg { color: #000; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-out); }
.faq__a div { padding: 0 26px 26px; color: var(--text-soft); font-size: 1rem; }

/* ------------------------------------------------------------ 17. Kontakt */
.contact__grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 26px; }
.contact__card { padding: 40px 36px; }
.contact__list { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 22px; }
.contact__list li { display: flex; gap: 18px; align-items: flex-start; }
.contact__list .hexicon { width: 46px; height: 51px; }
.contact__list .hexicon svg { width: 19px; height: 19px; }
.contact__list small { display: block; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact__list b { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 1.16rem; letter-spacing: .01em; }
.contact__list a:hover b { color: var(--gold-light); }
.contact__socials { display: flex; gap: 12px; }
.contact__socials a {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px var(--line-strong);
  transition: .35s var(--ease);
}
.contact__socials a:hover { background: var(--gold-grad); color: #000; transform: translateY(-3px); }
.contact__socials svg { width: 19px; height: 19px; }

.map {
  border-radius: var(--radius); overflow: hidden; min-height: 460px;
  position: relative; box-shadow: inset 0 0 0 1px var(--line);
  background: var(--panel);
}
.map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; filter: grayscale(1) invert(.92) contrast(.88) hue-rotate(180deg); }

.contact__form { padding: 40px 36px; }

/* ------------------------------------------------------------- 18. Sidfot */
.footer { position: relative; background: #040507; border-top: 1px solid var(--line); padding-top: 74px; overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 46px; padding-bottom: 56px; }
.footer__logo { height: 62px; width: auto; margin-bottom: 22px; }
.footer p { color: var(--text-muted); font-size: .95rem; }
.footer h4 { font-size: 1.05rem; letter-spacing: .1em; margin-bottom: 22px; color: var(--gold-light); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer ul a { color: var(--text-muted); font-size: .95rem; transition: .3s var(--ease); display: inline-block; }
.footer ul a:hover { color: var(--gold-light); transform: translateX(4px); }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between; align-items: center;
  font-size: .87rem; color: var(--text-muted);
}
.footer__bottom a:hover { color: var(--gold); }

/* --------------------------------------------------------- 19. Tillbehör */
.totop {
  position: fixed; right: 26px; bottom: 26px; z-index: 300;
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-grad); color: #0F0B04;
  box-shadow: 0 14px 34px -14px rgba(201, 162, 74, .85);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: .45s var(--ease-out);
}
.totop.show { opacity: 1; visibility: visible; transform: none; }
.totop:hover { transform: translateY(-4px); }
.totop svg { width: 19px; height: 19px; }

.toasts { position: fixed; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 800; display: grid; gap: 10px; width: min(420px, 92vw); }
.toast {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 16px 20px; border-radius: 12px;
  background: rgba(16, 20, 28, .96); backdrop-filter: blur(14px);
  box-shadow: var(--shadow), inset 0 0 0 1px var(--line-strong);
  font-size: .95rem;
  animation: toastIn .45s var(--ease-out);
}
.toast.err { box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 71, 87, .45); }
.toast svg { width: 19px; height: 19px; flex: none; margin-top: 2px; color: #3DDC84; }
.toast.err svg { color: #FF6B7A; }
@keyframes toastIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* Flytande "ring oss"-knapp på mobil */
.callbar { display: none; }

/* ------------------------------------------------------------ 20. Responsiv */
@media (max-width: 1120px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__media { max-width: 560px; }
  .booking__grid { grid-template-columns: 1fr; gap: 44px; }
  .contact__grid { grid-template-columns: 1fr; }
  .hours__grid { grid-template-columns: 1fr; }
  .usp__grid { grid-template-columns: 1fr 1fr; }
  .usp__item:nth-child(2n) { border-right: 0; }
  .usp__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .hero__bg img { width: 74%; right: -14%; opacity: .38; }
  .hero__chevron { right: 14%; }
}

@media (max-width: 900px) {
  :root { --nav-h: 72px; }
  /* backdrop-filter skapar en containing block for position:fixed -> stang av pa mobil */
  .nav, .nav.stuck {
    backdrop-filter: none; -webkit-backdrop-filter: none;
    background: rgba(6, 7, 10, .96);
  }
  .nav__actions > .btn { display: none; }
  .nav__logo, .nav__actions { position: relative; z-index: 2; }
  .nav__links {
    position: fixed; inset: 0;
    flex-direction: column; justify-content: center; gap: 6px;
    background: #05060A;
    transform: translateX(100%); transition: transform .5s var(--ease-out);
    margin: 0; padding: calc(var(--nav-h) + 54px) 30px 110px;
    overflow-y: auto;
  }
  .nav__links.open { transform: none; }
  .nav__links a { font-size: 1.5rem; padding: 14px; }
  .nav__links a::after { left: 14px; right: 14px; bottom: 8px; }
  .burger { display: block; }
  .nav__phone { display: none; }
  .nav__logo img, .nav.stuck .nav__logo img { height: 40px; }
  .topbar__list .topbar__item:not(.open-badge) { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .section { padding: 84px 0; }
  .hero { min-height: auto; padding: 72px 0 90px; }
  .hero__chevron { display: none; }
  .hero__scroll { display: none; }
  .form, .contact__card, .contact__form, .hours__card, .urgent { padding: 32px 26px; }
  .about__stamp { left: 0; }
  .callbar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
    background: rgba(8, 10, 14, .97); backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
  }
  .callbar .btn { flex: 1; padding: 14px 10px; font-size: .93rem; }
  body { padding-bottom: 74px; }
  .totop { bottom: 88px; right: 16px; }
  .toasts { bottom: 92px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .section { padding: 66px 0; }
  .usp__grid { grid-template-columns: 1fr; }
  .usp__item { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .form__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .gallery__grid { grid-auto-rows: 190px; }
  .gallery__item:nth-child(6n + 1) { grid-row: span 1; }
  .head { margin-bottom: 40px; }
  .about__media img { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), calc(100% - 34px) 100%, 0 100%); }
  .lightbox__nav.prev { left: 10px; }
  .lightbox__nav.next { right: 10px; }
  .pricerow { grid-template-columns: 1fr; gap: 6px; }
  .pricerow b { font-size: 1.2rem; }
}

/* -------------------------------------------------- 21. Ikonomslutningar */
[data-icon] { display: inline-flex; align-items: center; justify-content: center; }
.hexicon > [data-icon] { position: relative; }
.hexicon > [data-icon] svg { width: 25px; height: 25px; color: inherit; }
.hexicon { color: var(--gold-light); }
.hexicon--blue { color: var(--blue-light); }
.contact__list .hexicon > [data-icon] svg { width: 19px; height: 19px; }
.btn > [data-icon] svg { width: 19px; height: 19px; }
.topbar__item > [data-icon] svg { width: 15px; height: 15px; color: var(--gold); }
.hero__badge b > [data-icon] svg { width: 13px; height: 13px; }
.hero__trust > div > [data-icon] svg { width: 18px; height: 18px; color: var(--gold); }
.about__list > li > [data-icon] svg { width: 20px; height: 20px; color: var(--gold); }
.nav__phone > [data-icon] svg { width: 19px; height: 19px; color: var(--gold); }
.urgent__phone > [data-icon] svg { width: 28px; height: 28px; color: var(--gold); }
.pricenote > [data-icon] svg { width: 21px; height: 21px; color: var(--blue-light); }
.form__note > [data-icon] svg { width: 17px; height: 17px; color: var(--gold); }
.reviews__ctrls [data-icon] svg { width: 18px; height: 18px; }
.lightbox [data-icon] svg { width: 21px; height: 21px; }
.totop [data-icon] svg { width: 19px; height: 19px; }
.gallery__zoom svg { width: 17px; height: 17px; color: var(--gold); }
.service__link svg { width: 15px; height: 15px; }
.contact__socials svg, .topbar__socials svg { width: 19px; height: 19px; }
.topbar__socials svg { width: 15px; height: 15px; }

/* Kartlänk över kartan */
.map__link {
  position: absolute; left: 16px; bottom: 16px; z-index: 3;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px; border-radius: 8px;
  background: rgba(8, 10, 14, .88); backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(201, 162, 74, .4);
  font-size: .88rem; font-weight: 600; color: var(--gold-light);
  transition: .3s var(--ease);
}
.map__link:hover { background: var(--gold); color: #100C05; }
.map__link svg { width: 16px; height: 16px; }
.map__fallback {
  position: absolute; inset: 0; z-index: 1;
  display: grid; place-content: center; gap: 10px; text-align: center; padding: 30px;
  color: var(--text-muted); font-size: .95rem;
}
.map__fallback svg { width: 30px; height: 30px; margin: 0 auto; color: var(--gold); }
.map iframe { position: relative; z-index: 2; }
.form__done .hexicon { color: #3DDC84; }
.form__done .hexicon > [data-icon] svg { width: 32px; height: 32px; }
