/* ==========================================================================
   NORDIC RÖR — Design system
   Kaira Agency · Full System build
   --------------------------------------------------------------------------
   Palette discipline: white dominates (~80%). #F7F7F5 alternates sections.
   Gold (#C8A46A) is reserved for primary buttons, icons, active nav, links
   and small highlights — never for large fills. #111111 only for hero,
   footer and deliberate premium bands.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fonts — self-hosted, latin subset (covers å ä ö). No external requests.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-Variable-latin.woff2') format('woff2-variations'),
       url('fonts/Montserrat-Variable-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto-Variable-latin.woff2') format('woff2-variations'),
       url('fonts/Roboto-Variable-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   2. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Colour */
  --bg:            #FFFFFF;
  --bg-alt:        #F7F7F5;
  --ink:           #1F1F1F;
  --ink-soft:      #5F5F5F;
  --gold:          #C8A46A;
  --gold-deep:     #A9873F;   /* hover/pressed state — derived, not a new brand colour */
  --gold-wash:     rgba(200, 164, 106, 0.10);
  --dark:          #111111;
  --dark-raise:    #1A1A1A;
  --line:          #E8E8E8;
  --line-dark:     rgba(255, 255, 255, 0.14);

  /* Type */
  --font-head: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Roboto', 'Helvetica Neue', Arial, sans-serif;

  /* Rhythm */
  --shell:      1240px;
  --shell-slim: 880px;
  --gutter:     20px;
  --sec-y:      clamp(64px, 10vw, 132px);

  /* Motion */
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-firm: cubic-bezier(0.4, 0, 0.2, 1);

  /* Elevation — deliberately restrained */
  --lift-1: 0 2px 10px rgba(31, 31, 31, 0.05);
  --lift-2: 0 14px 40px rgba(31, 31, 31, 0.10);
  --lift-3: 0 24px 60px rgba(17, 17, 17, 0.16);
}

@media (min-width: 720px) { :root { --gutter: 32px; } }
@media (min-width: 1100px) { :root { --gutter: 48px; } }

/* --------------------------------------------------------------------------
   3. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

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

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

/* Inline icons carry no width/height attribute, so without this they stretch
   to fill their flex parent. Sized contexts below override as needed. */
.btn svg,
.link-arrow svg,
.nav-phone svg,
.callbar a svg,
.drawer nav a span svg { width: 18px; height: 18px; flex: none; }
.rot-strip > svg { width: 30px; height: 30px; flex: none; color: var(--gold); }
.drawer nav a span svg { width: 16px; height: 16px; }

a { color: var(--gold-deep); text-decoration: none; }

button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--gold); color: #FFFFFF; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--dark); color: #FFFFFF;
  padding: 14px 22px; font-family: var(--font-head); font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   4. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-wrap: balance;
}

h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); font-weight: 900; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); letter-spacing: -0.015em; }
h4 { font-size: 1.12rem; font-weight: 700; letter-spacing: -0.005em; line-height: 1.3; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(1.06rem, 1.9vw, 1.26rem);
  line-height: 1.66;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* Small uppercase label — the quiet premium signal, used above every H2 */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: ''; width: 26px; height: 2px;
  background: var(--gold); flex: none;
}
.eyebrow.center::before { display: none; }

.on-dark .eyebrow { color: var(--gold); }

/* Gold-accented word inside a heading */
.gold { color: var(--gold-deep); }
.on-dark .gold { color: var(--gold); }

/* --------------------------------------------------------------------------
   5. Layout
   -------------------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell-slim { max-width: var(--shell-slim); }

.section { padding-block: var(--sec-y); position: relative; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }

.section--dark,
.on-dark {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4,
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #FFFFFF; }

.sec-head { max-width: 62ch; margin-bottom: clamp(38px, 5vw, 64px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head.center .lede { margin-inline: auto; }
.sec-head p { margin-top: 18px; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.on-dark .rule { background: var(--line-dark); }

/* --------------------------------------------------------------------------
   6. Buttons — premium hover + real pressed state
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: #FFFFFF;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  padding: 17px 32px;
  font-family: var(--font-head);
  font-size: 0.83rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1.5px solid var(--btn-bg);
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  transition: transform .38s var(--ease), box-shadow .38s var(--ease),
              border-color .38s var(--ease), color .3s var(--ease-firm);
  -webkit-tap-highlight-color: transparent;
}

/* The sheen: a darker panel that wipes in from the left on hover */
.btn::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: var(--gold-deep);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .5s var(--ease);
}
.btn:hover::before,
.btn:focus-visible::before { transform: scaleX(1); }

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(200, 164, 106, 0.28);
  border-color: var(--gold-deep);
}

/* Pressed — settles back down and tightens. Reads as a physical click. */
.btn:active {
  transform: translateY(0) scale(0.985);
  box-shadow: 0 2px 8px rgba(200, 164, 106, 0.22);
  transition-duration: .09s;
}

/* A second, faster diagonal shine layered above the colour wipe — the
   difference between "button changes colour" and "button feels expensive". */
.btn::after {
  content: '';
  position: absolute; z-index: 1;
  top: -60%; left: -35%;
  width: 26%; height: 220%;
  background: rgba(255, 255, 255, 0.32);
  transform: rotate(20deg) translateX(-260%);
  transition: transform .75s var(--ease);
  pointer-events: none;
}
.btn:hover::after,
.btn:focus-visible::after { transform: rotate(20deg) translateX(420%); }

/* Click ripple — injected by main.js at the pointer position, one per press */
.btn-ripple {
  position: absolute; z-index: 2;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  pointer-events: none;
  animation: btnRipple .6s var(--ease-firm) forwards;
}
@keyframes btnRipple {
  to { transform: scale(1); opacity: 0; }
}

.btn svg { flex: none; transition: transform .42s var(--ease); position: relative; z-index: 1; }
.btn:hover svg { transform: translateX(4px); }
.btn.btn-call:hover svg { transform: rotate(-12deg) scale(1.08); }

/* Circular icon-only button — quick secondary actions (e.g. call from a card)
   sitting next to a primary text link, not replacing it. */
.btn-icon {
  position: relative; z-index: 4;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; flex: none;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--bg);
  color: var(--gold-deep);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease),
              background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
}
.btn-icon svg { width: 17px; height: 17px; }
.btn-icon:hover,
.btn-icon:focus-visible {
  background: var(--gold); border-color: var(--gold); color: #FFFFFF;
  transform: translateY(-3px) rotate(10deg);
  box-shadow: 0 10px 22px rgba(200, 164, 106, 0.32);
}
.btn-icon:active { transform: translateY(-1px) rotate(10deg) scale(0.92); transition-duration: .1s; }
.on-dark .btn-icon { border-color: var(--line-dark); background: transparent; color: var(--gold); }

/* Outline on light */
.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--ink);
}
.btn-ghost::before { background: var(--ink); }
.btn-ghost:hover,
.btn-ghost:focus-visible { color: #FFFFFF; border-color: var(--ink); box-shadow: 0 12px 26px rgba(31,31,31,.18); }
.btn-ghost:active { box-shadow: 0 2px 8px rgba(31,31,31,.16); }

/* Outline on dark */
.btn-line {
  --btn-bg: transparent;
  --btn-fg: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.34);
}
.btn-line::before { background: #FFFFFF; }
.btn-line:hover,
.btn-line:focus-visible { color: var(--ink); border-color: #FFFFFF; box-shadow: 0 12px 26px rgba(0,0,0,.3); }
.btn-line:active { box-shadow: 0 2px 8px rgba(0,0,0,.28); }

.btn-lg { padding: 20px 40px; font-size: 0.88rem; }
.btn-sm { padding: 13px 24px; font-size: 0.76rem; }
.btn-block { display: flex; width: 100%; }

.btn-row {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}
.btn-row.center { justify-content: center; }

/* Quiet inline text link with a gold underline that grows */
.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}
.link-arrow::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .45s var(--ease);
}
.link-arrow:hover { color: var(--gold-deep); }
.link-arrow:hover::after { transform: scaleX(1); }
.link-arrow svg { transition: transform .42s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }
.on-dark .link-arrow { color: #FFFFFF; }
.on-dark .link-arrow:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   7. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  transition: background .45s var(--ease), box-shadow .45s var(--ease),
              border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(31, 31, 31, 0.05);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  height: 76px;
  transition: height .45s var(--ease);
}
.site-header.is-scrolled .nav { height: 66px; }

/* Wordmark */
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-head);
  font-weight: 900; font-size: 1.06rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #FFFFFF;
  transition: color .45s var(--ease);
  white-space: nowrap;
}
.site-header.is-scrolled .brand,
.site-header.on-light .brand { color: var(--ink); }

.brand-mark { width: 26px; height: 26px; flex: none; color: var(--gold); }
.brand em { font-style: normal; color: var(--gold); }

.nav-links { display: none; align-items: center; gap: 34px; }

.nav-links a {
  position: relative;
  font-family: var(--font-head);
  font-size: 0.79rem; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  padding-block: 6px;
  transition: color .3s var(--ease-firm);
}
.site-header.is-scrolled .nav-links a,
.site-header.on-light .nav-links a { color: var(--ink-soft); }

.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: right center;
  transition: transform .42s var(--ease);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left center; }
.nav-links a:hover { color: #FFFFFF; }
.site-header.is-scrolled .nav-links a:hover,
.site-header.on-light .nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--gold); }

.nav-cta { display: none; }

/* Phone number in the bar — a trade site's highest-intent element */
.nav-phone {
  display: none; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 800;
  font-size: 0.92rem; letter-spacing: 0.02em;
  color: #FFFFFF;
  transition: color .3s var(--ease-firm);
}
.site-header.is-scrolled .nav-phone,
.site-header.on-light .nav-phone { color: var(--ink); }
.nav-phone:hover { color: var(--gold); }
.nav-phone svg { width: 17px; height: 17px; color: var(--gold); flex: none; }

/* Burger */
.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 11px;
  background: none; border: 0; cursor: pointer;
  margin-right: -11px;
}
.burger span {
  display: block; height: 2px; width: 100%; background: #FFFFFF;
  transition: transform .4s var(--ease), opacity .25s var(--ease-firm), background .45s var(--ease);
}
.site-header.is-scrolled .burger span,
.site-header.on-light .burger span { background: var(--ink); }
.burger.open span { background: #FFFFFF; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 89;
  background: var(--dark);
  padding: 108px var(--gutter) 40px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .42s var(--ease), transform .42s var(--ease), visibility .42s;
  overflow-y: auto;
}
.drawer.open { opacity: 1; visibility: visible; transform: none; }

.drawer nav { display: flex; flex-direction: column; }
.drawer nav a {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.015em;
  color: #FFFFFF;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: space-between;
  opacity: 0; transform: translateX(-22px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s var(--ease-firm);
}
.drawer.open nav a { opacity: 1; transform: none; }
.drawer nav a:hover, .drawer nav a[aria-current="page"] { color: var(--gold); }
.drawer nav a span { color: var(--gold); font-size: 0.8rem; }
.drawer.open nav a:nth-child(1) { transition-delay: .08s; }
.drawer.open nav a:nth-child(2) { transition-delay: .13s; }
.drawer.open nav a:nth-child(3) { transition-delay: .18s; }
.drawer.open nav a:nth-child(4) { transition-delay: .23s; }
.drawer.open nav a:nth-child(5) { transition-delay: .28s; }
.drawer.open nav a:nth-child(6) { transition-delay: .33s; }
.drawer.open nav a:nth-child(7) { transition-delay: .38s; }

.drawer-foot {
  margin-top: auto; padding-top: 34px;
  display: flex; flex-direction: column; gap: 13px;
}
.drawer-foot .btn { width: 100%; }
.drawer-jour {
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,.5); text-align: center;
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  background: var(--dark);
  overflow: hidden;
  isolation: isolate;
}

.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 72% center;
  /* Slow ambient push-in — never loops jarringly, settles and stays */
  animation: heroPush 22s var(--ease-firm) forwards;
}
@keyframes heroPush { from { transform: scale(1.09); } to { transform: scale(1); } }

/* Two-layer scrim: keeps the left column legible without flattening the photo */
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(17,17,17,.94) 0%, rgba(17,17,17,.86) 26%, rgba(17,17,17,.5) 52%, rgba(17,17,17,.18) 72%, rgba(17,17,17,.42) 100%),
    linear-gradient(to top, rgba(17,17,17,.92) 0%, rgba(17,17,17,0) 42%);
}

.hero-inner {
  position: relative;
  width: 100%;
  padding-top: 132px;
  padding-bottom: clamp(38px, 6vw, 68px);
}

/* The .line spans do the breaking — no ch-width clamp, or short words
   like "i" get stranded on their own line. */
.hero-copy { max-width: none; }

.hero h1 {
  color: #FFFFFF;
  margin-bottom: 22px;
  line-height: 1.0;
}
.hero h1 .line { display: block; }

.hero .lede {
  color: rgba(255, 255, 255, 0.8);
  max-width: 46ch;
  margin-bottom: 34px;
}

/* Availability pill — scarcity/urgency without shouting */
.hero-flag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 17px 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 26px;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ADE80; flex: none;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* Hero credential strip */
.hero-marks {
  display: flex; flex-wrap: wrap; gap: 12px 26px;
  margin-top: 40px; padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-marks li {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}
.hero-marks svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

ul.hero-marks { list-style: none; margin: 40px 0 0; padding: 26px 0 0; }

.scroll-hint {
  position: absolute; right: var(--gutter); bottom: 30px;
  display: none; align-items: center; gap: 12px;
  font-family: var(--font-head); font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  writing-mode: vertical-rl;
}
.scroll-hint::after {
  content: ''; width: 1px; height: 54px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: hintDrop 2.6s var(--ease-firm) infinite;
}
@keyframes hintDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Compact hero for interior pages */
.hero-sub {
  position: relative;
  background: var(--dark);
  padding: 148px 0 clamp(56px, 7vw, 86px);
  overflow: hidden;
  isolation: isolate;
}
.hero-sub .hero-media img { object-position: center; animation: none; }
/* Heavier than the home hero: these photos are brighter and the copy block
   sits lower, so a light scrim leaves the breadcrumb unreadable. */
.hero-sub .hero-media::after {
  background:
    linear-gradient(95deg, rgba(17,17,17,.96) 0%, rgba(17,17,17,.9) 40%, rgba(17,17,17,.72) 100%),
    linear-gradient(to top, rgba(17,17,17,.85) 0%, rgba(17,17,17,.35) 55%);
}
.hero-sub h1 { color: #FFFFFF; font-size: clamp(2.1rem, 5vw, 3.7rem); }
.hero-sub .lede { color: rgba(255, 255, 255, 0.78); }

/* Breadcrumb */
.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.44);
  margin-bottom: 22px;
  list-style: none; padding: 0;
}
.crumbs a { color: rgba(255, 255, 255, 0.62); }
.crumbs a:hover { color: var(--gold); }
.crumbs li { display: flex; align-items: center; gap: 9px; }
.crumbs li + li::before { content: '/'; color: rgba(255, 255, 255, 0.28); }

/* --------------------------------------------------------------------------
   9. Scroll reveal
   The signature: content enters from the left and settles. Headings are
   revealed word-by-word, scrubbed to scroll position (see main.js).
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .95s var(--ease), transform .95s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].shown { opacity: 1; transform: none; will-change: auto; }

/* Vertical variant for grid items where a sideways slide would look off */
[data-reveal="up"] { transform: translateY(26px); }

[data-delay="1"] { transition-delay: .09s; }
[data-delay="2"] { transition-delay: .18s; }
[data-delay="3"] { transition-delay: .27s; }
[data-delay="4"] { transition-delay: .36s; }
[data-delay="5"] { transition-delay: .45s; }

/* Word-split headings */
[data-split] .word {
  display: inline-block;
  will-change: opacity, transform;
}

/* Image reveal — a gold curtain wipes off to the right */
.img-reveal { position: relative; overflow: hidden; }
.img-reveal::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: var(--gold);
  transform-origin: right center;
  transition: transform 1.15s var(--ease);
}
.img-reveal.shown::after { transform: scaleX(0); }
.img-reveal img {
  transform: scale(1.12);
  transition: transform 1.5s var(--ease);
}
.img-reveal.shown img { transform: none; }

/* --------------------------------------------------------------------------
   10. Media treatment — grades every photo into one visual set
   -------------------------------------------------------------------------- */
.shot {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  border-radius: 2px;
}
.shot img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 3 / 2;
  filter: saturate(0.82) contrast(1.04) brightness(0.97);
  transition: transform 1.1s var(--ease), filter .7s var(--ease);
}
.shot::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(150deg, rgba(200,164,106,.13) 0%, rgba(17,17,17,.2) 100%);
  mix-blend-mode: multiply;
  opacity: .85;
  transition: opacity .7s var(--ease);
}
.shot.tall img { aspect-ratio: 4 / 5; }
.shot.wide img { aspect-ratio: 16 / 9; }

/* --------------------------------------------------------------------------
   11. Trust bar
   -------------------------------------------------------------------------- */
.trustbar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  margin-inline: calc(var(--gutter) * -1);
}
.trustbar-item {
  background: var(--bg-alt);
  padding: 26px 20px;
  text-align: center;
}
.trustbar-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.6vw, 2.15rem);
  font-weight: 900; letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.trustbar-item strong sup { color: var(--gold); font-size: .5em; top: -.7em; }
.trustbar-item span {
  display: block; margin-top: 9px;
  font-family: var(--font-head);
  font-size: 0.67rem; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   12. Service cards (home) — gold line-icons, premium hover
   -------------------------------------------------------------------------- */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.svc-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 34px 30px 30px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease),
              border-color .5s var(--ease);
}

/* Gold rail that grows down the left edge on hover */
.svc-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--gold);
  transform: scaleY(0); transform-origin: top center;
  transition: transform .6s var(--ease);
}
/* Faint gold wash from the corner */
.svc-card::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 90% at 0% 0%, var(--gold-wash) 0%, transparent 62%);
  opacity: 0;
  transition: opacity .6s var(--ease);
}
.svc-card:hover,
.svc-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--lift-2);
  border-color: #DDD2BC;
}
.svc-card:hover::before,
.svc-card:focus-within::before { transform: scaleY(1); }
.svc-card:hover::after,
.svc-card:focus-within::after { opacity: 1; }
.svc-card:active { transform: translateY(-2px) scale(0.995); transition-duration: .1s; }

.svc-icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 24px;
  transition: transform .6s var(--ease);
}
.svc-card:hover .svc-icon { transform: translateY(-3px) scale(1.06); }
.svc-icon svg { width: 100%; height: 100%; }

.svc-card h3 { margin-bottom: 12px; font-size: 1.28rem; }
.svc-card p { font-size: 0.96rem; margin-bottom: 22px; }

.svc-points {
  list-style: none; margin: 0 0 26px; padding: 0;
  display: flex; flex-direction: column; gap: 9px;
}
.svc-points li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.9rem; line-height: 1.5;
}
.svc-points li::before {
  content: ''; flex: none;
  width: 5px; height: 5px; margin-top: 9px;
  background: var(--gold); border-radius: 50%;
}

.svc-foot {
  margin-top: auto; padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px 14px;
}
/* The call button + "Läs mer" cluster never wraps internally and never
   shrinks — a long price line (e.g. "Framme inom 60 min") wraps onto its
   own row above it instead of squeezing both onto one cramped line. */
.svc-foot > span:last-child {
  flex: none;
  display: flex; align-items: center; gap: 14px;
  margin-left: auto;
}
.svc-price {
  font-family: var(--font-head);
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft);
  flex: 1 1 auto;
  min-width: max-content;
}
.svc-price b { color: var(--ink); font-weight: 800; }

/* Whole card clickable, keeps a real <a> for a11y */
.svc-link::after {
  content: ''; position: absolute; inset: 0; z-index: 3;
}

/* --------------------------------------------------------------------------
   13. Process steps
   -------------------------------------------------------------------------- */
.steps {
  display: grid; grid-template-columns: 1fr; gap: 0;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 0 30px 68px;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before {
  counter-increment: step;
  content: '0' counter(step);
  position: absolute; left: 0; top: 30px;
  font-family: var(--font-head);
  font-size: 1.06rem; font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: 0.96rem; margin: 0; }

.on-dark .step { border-color: var(--line-dark); }

/* --------------------------------------------------------------------------
   14. Split feature block
   -------------------------------------------------------------------------- */
.split {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}
.split-copy .checks {
  list-style: none; margin: 26px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.checks li { display: flex; gap: 13px; align-items: flex-start; font-size: 0.98rem; }
.checks svg { width: 20px; height: 20px; flex: none; margin-top: 3px; color: var(--gold); }
.checks b { color: var(--ink); font-weight: 600; }
.on-dark .checks b { color: #FFFFFF; }

/* --------------------------------------------------------------------------
   15. Reviews — continuous right-to-left marquee, pauses on hover
   -------------------------------------------------------------------------- */
.reviews-marquee {
  overflow-x: hidden;
  overflow-y: visible;
  margin-inline: calc(var(--gutter) * -1);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding-inline: var(--gutter);
  /* Content is duplicated once in the markup, so -50% is exactly one full
     lap — the loop point is invisible because both halves are identical. */
  animation: reviewsScroll 44s linear infinite;
}
.reviews-marquee:hover .reviews-track,
.reviews-marquee:focus-within .reviews-track { animation-play-state: paused; }

@keyframes reviewsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review {
  flex: 0 0 300px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 32px 30px;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--lift-2); }
.section--alt .review { background: var(--bg); }

.stars { display: flex; gap: 3px; margin-bottom: 18px; color: var(--gold); }
.stars svg { width: 17px; height: 17px; }

.review blockquote {
  margin: 0 0 24px;
  font-size: 1.02rem; line-height: 1.68;
  color: var(--ink);
}
.review blockquote::before { content: '”'; display: none; }

.review-by {
  margin-top: auto; padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 13px;
}
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--dark); color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 0.86rem;
  letter-spacing: 0.02em;
  flex: none;
}
.review-by strong {
  display: block; font-family: var(--font-head);
  font-size: 0.92rem; font-weight: 700; color: var(--ink);
  line-height: 1.3;
}
.review-by span { font-size: 0.8rem; color: var(--ink-soft); }

/* Aggregate rating badge */
.rating-badge {
  display: inline-flex; align-items: center; gap: 15px;
  padding: 14px 24px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--bg);
}
.rating-badge .score {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 900;
  color: var(--ink); letter-spacing: -0.03em; line-height: 1;
}
.rating-badge small {
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.11em; text-transform: uppercase; color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   16. Pricing
   -------------------------------------------------------------------------- */
.price-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }

.price-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 36px 30px;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--lift-2); border-color: #DDD2BC; }

.price-card.featured {
  background: var(--dark);
  border-color: var(--dark);
  color: rgba(255, 255, 255, 0.74);
}
.price-card.featured h3, .price-card.featured .price-num { color: #FFFFFF; }
.price-card.featured .price-list li { color: rgba(255, 255, 255, 0.74); }
.price-card.featured .price-list li::before { color: var(--gold); }
.price-card.featured .price-head,
.price-card.featured .price-foot { border-color: var(--line-dark); }

.price-tag {
  position: absolute; top: 0; right: 26px;
  transform: translateY(-50%);
  background: var(--gold); color: #FFFFFF;
  font-family: var(--font-head);
  font-size: 0.63rem; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 7px 15px; border-radius: 2px;
}

.price-head { padding-bottom: 22px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.price-card h3 { font-size: 1.2rem; margin-bottom: 14px; }
.price-num {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.5rem); font-weight: 900;
  letter-spacing: -0.035em; color: var(--ink); line-height: 1;
}
.price-num small {
  display: block; margin-top: 9px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.11em;
  text-transform: uppercase; color: var(--ink-soft);
}
.price-card.featured .price-num small { color: rgba(255,255,255,.6); }

.price-list {
  list-style: none; margin: 0 0 28px; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.price-list li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 0.93rem; line-height: 1.55;
}
.price-list li::before {
  content: '✓'; flex: none; color: var(--gold);
  font-weight: 700; font-size: 0.9rem; line-height: 1.6;
}
.price-foot { padding-top: 22px; border-top: 1px solid var(--line); }

.price-note {
  margin-top: 28px; padding: 20px 24px;
  background: var(--bg-alt); border-left: 2px solid var(--gold);
  font-size: 0.9rem;
}
.section--alt .price-note { background: var(--bg); }

/* ROT highlight */
.rot-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px;
  padding: 26px 30px;
  background: var(--dark); color: rgba(255,255,255,.76);
  border-radius: 2px;
}
.rot-strip strong {
  font-family: var(--font-head); color: #FFFFFF;
  font-size: 1.06rem; font-weight: 800; letter-spacing: -0.01em;
}
.rot-strip .gold { color: var(--gold); }

/* --------------------------------------------------------------------------
   17. FAQ accordion
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }

.faq-q {
  width: 100%;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  padding: 26px 0;
  background: none; border: 0; cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1.03rem; font-weight: 700; letter-spacing: -0.01em;
  color: var(--ink);
  transition: color .3s var(--ease-firm);
}
.faq-q:hover { color: var(--gold-deep); }

.faq-ico {
  position: relative; flex: none;
  width: 22px; height: 22px; margin-top: 2px;
}
.faq-ico::before, .faq-ico::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.faq-ico::before { width: 15px; height: 1.5px; }
.faq-ico::after { width: 1.5px; height: 15px; }
.faq-q[aria-expanded="true"] .faq-ico::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-q[aria-expanded="true"] .faq-ico::before { transform: translate(-50%, -50%) rotate(180deg); }

.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .55s var(--ease);
}
.faq-a > div { overflow: hidden; }
.faq-a.open { grid-template-rows: 1fr; }
.faq-a p { padding-bottom: 28px; padding-right: 46px; margin: 0; font-size: 0.98rem; }

/* --------------------------------------------------------------------------
   18. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: ''; position: absolute; z-index: -1;
  width: 620px; height: 620px;
  top: -270px; right: -180px;
  background: radial-gradient(circle, rgba(200,164,106,.18) 0%, transparent 66%);
}
.cta-band::after {
  content: ''; position: absolute; z-index: -1;
  width: 460px; height: 460px;
  bottom: -240px; left: -160px;
  background: radial-gradient(circle, rgba(200,164,106,.1) 0%, transparent 66%);
}
.cta-band h2 { color: #FFFFFF; }
.cta-band .lede { color: rgba(255, 255, 255, 0.74); }

.cta-split {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
.cta-aside {
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  background: rgba(255,255,255,.03);
}
.cta-aside dl { margin: 0; display: flex; flex-direction: column; gap: 20px; }
.cta-aside dt {
  font-family: var(--font-head); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 5px;
}
.cta-aside dd {
  margin: 0; font-family: var(--font-head);
  font-size: 1.24rem; font-weight: 800; color: #FFFFFF; letter-spacing: -0.015em;
}
.cta-aside dd a { color: #FFFFFF; transition: color .3s var(--ease-firm); }
.cta-aside dd a:hover { color: var(--gold); }
.cta-aside dd small {
  display: block; margin-top: 4px;
  font-family: var(--font-body); font-size: 0.83rem; font-weight: 400;
  color: rgba(255,255,255,.55); letter-spacing: 0;
}

/* --------------------------------------------------------------------------
   19. Forms
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: clamp(28px, 4vw, 44px);
}
.on-dark .form-card,
.cta-band .form-card {
  background: #FFFFFF;
}

.form-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.wide { grid-column: 1 / -1; }

.field label {
  font-family: var(--font-head);
  font-size: 0.71rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--ink);
}
.field label .req { color: var(--gold-deep); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .3s var(--ease-firm), box-shadow .3s var(--ease-firm), background .3s var(--ease-firm);
  -webkit-appearance: none; appearance: none;
}
.field textarea { min-height: 128px; resize: vertical; line-height: 1.6; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235F5F5F' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 17px;
  padding-right: 42px;
  cursor: pointer;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: #D2D2D2; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-wash);
  background: #FFFFFF;
}
.field input::placeholder, .field textarea::placeholder { color: #A8A8A8; }

.form-consent {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.85rem; line-height: 1.55; color: var(--ink-soft);
}
.form-consent input {
  width: 18px; height: 18px; flex: none; margin-top: 3px;
  accent-color: var(--gold);
}
.form-foot {
  margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
}
.form-reassure {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.82rem; color: var(--ink-soft);
}
.form-reassure svg { width: 16px; height: 16px; color: var(--gold); flex: none; }

.form-ok {
  display: none;
  padding: 26px 28px;
  border: 1px solid var(--gold);
  border-left-width: 3px;
  background: var(--gold-wash);
  border-radius: 2px;
}
.form-ok.show { display: block; }
.form-ok h4 { margin-bottom: 8px; }
.form-ok p { font-size: 0.94rem; margin: 0; }

/* --------------------------------------------------------------------------
   20. Sticky mobile call bar
   -------------------------------------------------------------------------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 88;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--dark);
  border-top: 1px solid var(--line-dark);
  transform: translateY(102%);
  transition: transform .5s var(--ease);
  padding-bottom: env(safe-area-inset-bottom);
}
.callbar.show { transform: none; }
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 17px 12px;
  font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #FFFFFF;
  transition: background .3s var(--ease-firm);
}
.callbar a:active { background: rgba(255,255,255,.08); }
.callbar a svg { width: 16px; height: 16px; color: var(--gold); flex: none; }
.callbar a.primary { background: var(--gold); color: #FFFFFF; }
.callbar a.primary svg { color: #FFFFFF; }
.callbar a.primary:active { background: var(--gold-deep); }
.callbar a + a { border-left: 1px solid var(--line-dark); }

/* --------------------------------------------------------------------------
   21. Service page components
   -------------------------------------------------------------------------- */
.svc-layout { display: grid; grid-template-columns: 1fr; gap: clamp(40px, 5vw, 72px); }

.svc-body h2 { margin-top: 0; }
.svc-body h3 { margin-top: 46px; }
.svc-body h3:first-of-type { margin-top: 0; }
.svc-body > p { font-size: 1.03rem; }

.svc-aside > * + * { margin-top: 20px; }

.aside-card {
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 30px 26px;
  background: var(--bg);
}
.aside-card.dark { background: var(--dark); border-color: var(--dark); color: rgba(255,255,255,.74); }
.aside-card.dark h4 { color: #FFFFFF; }
.aside-card h4 { margin-bottom: 16px; }
.aside-card p { font-size: 0.93rem; }
.aside-card .btn { margin-top: 20px; width: 100%; }

.aside-list { list-style: none; margin: 0; padding: 0; }
.aside-list li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.aside-card.dark .aside-list li { border-color: var(--line-dark); }
.aside-list li:last-child { border-bottom: 0; }
.aside-list b { font-family: var(--font-head); font-weight: 700; color: var(--ink); text-align: right; }
.aside-card.dark .aside-list b { color: #FFFFFF; }

/* Scope grid on service pages */
.scope-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.scope-item { background: var(--bg); padding: 26px 24px; }
.scope-item svg { width: 26px; height: 26px; color: var(--gold); margin-bottom: 14px; }
.scope-item h4 { margin-bottom: 7px; }
.scope-item p { font-size: 0.9rem; margin: 0; }

/* Related services */
.rel-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.rel-card {
  position: relative;
  display: flex; align-items: center; gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--bg);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.rel-card:hover { transform: translateY(-3px); box-shadow: var(--lift-1); border-color: #DDD2BC; }
.rel-card .shot { width: 92px; flex: none; }
.rel-card .shot img { aspect-ratio: 1 / 1; }
.rel-card h4 { margin-bottom: 4px; font-size: 1rem; }
.rel-card p { font-size: 0.86rem; margin: 0; }
.rel-card a::after { content: ''; position: absolute; inset: 0; }

/* --------------------------------------------------------------------------
   22. Area / coverage list
   -------------------------------------------------------------------------- */
.areas {
  display: flex; flex-wrap: wrap; gap: 10px;
  list-style: none; margin: 0; padding: 0;
}
.areas li {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: var(--bg);
  transition: border-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.areas li:hover { border-color: var(--gold); color: var(--ink); transform: translateY(-2px); }
.on-dark .areas li { background: transparent; border-color: var(--line-dark); color: rgba(255,255,255,.68); }
.on-dark .areas li:hover { border-color: var(--gold); color: #FFFFFF; }

/* --------------------------------------------------------------------------
   23. Team
   -------------------------------------------------------------------------- */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.member .shot { margin-bottom: 18px; }
.member .shot img { aspect-ratio: 4 / 5; }
.member h4 { margin-bottom: 3px; }
.member .role {
  font-family: var(--font-head); font-size: 0.71rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 12px; display: block;
}
.member p { font-size: 0.92rem; margin: 0; }

/* Credential badges */
.cred-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.cred {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--bg);
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.cred:hover { border-color: #DDD2BC; transform: translateY(-3px); }
.cred svg { width: 28px; height: 28px; color: var(--gold); flex: none; }
.cred h4 { margin-bottom: 5px; font-size: 1rem; }
.cred p { font-size: 0.88rem; margin: 0; }

/* --------------------------------------------------------------------------
   24. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.62);
  padding-top: clamp(56px, 7vw, 88px);
  font-size: 0.94rem;
}
.footer-top {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .brand { color: #FFFFFF; margin-bottom: 20px; }
.footer-brand p { max-width: 40ch; font-size: 0.93rem; }

.footer-col h4 {
  color: #FFFFFF;
  font-size: 0.71rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.93rem;
  transition: color .3s var(--ease-firm), padding-left .35s var(--ease);
}
.footer-col a:hover { color: var(--gold); padding-left: 5px; }

.footer-contact { font-style: normal; }
.footer-contact a { display: block; }
.footer-contact .big {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 800;
  color: #FFFFFF; letter-spacing: -0.01em; margin-bottom: 4px;
}
.footer-contact .big:hover { color: var(--gold); padding-left: 0; }

.footer-jour {
  margin-top: 22px; padding: 16px 20px;
  border: 1px solid var(--line-dark);
  border-left: 2px solid var(--gold);
  border-radius: 2px;
}
.footer-jour strong { color: #FFFFFF; font-family: var(--font-head); display: block; }
.footer-jour span { font-size: 0.82rem; }

.footer-bot {
  border-top: 1px solid var(--line-dark);
  padding-block: 26px;
  display: flex; flex-direction: column; gap: 14px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
}
.footer-bot a { color: rgba(255, 255, 255, 0.42); }
.footer-bot a:hover { color: var(--gold); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }

.footer-credit { color: rgba(255,255,255,.3); }
.footer-credit a { color: rgba(255,255,255,.45); }

/* --------------------------------------------------------------------------
   25. Legal / long-form text page
   -------------------------------------------------------------------------- */
.prose h2 { font-size: clamp(1.35rem, 2.6vw, 1.7rem); margin-top: 52px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin-top: 32px; }
.prose ul { padding-left: 20px; margin-bottom: 1.2em; }
.prose li { margin-bottom: 8px; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.4em; font-size: 0.93rem; }
.prose th, .prose td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--line); }
.prose th { font-family: var(--font-head); font-weight: 700; color: var(--ink); }

/* --------------------------------------------------------------------------
   26. Responsive
   -------------------------------------------------------------------------- */
/* Below this the long Swedish CTA labels ("Boka kostnadsfritt besök") wrap to
   two lines and the trailing arrow floats oddly. Tighten rather than reword. */
@media (max-width: 419px) {
  .btn-lg { padding: 18px 22px; font-size: 0.8rem; letter-spacing: 0.07em; gap: 9px; }
  .btn { padding: 16px 24px; }
  .hero .btn-row { gap: 11px; }
  .hero .btn-row .btn { width: 100%; }
}

/* Denser cards and imagery below tablet width — smaller icons, shorter photo
   crops, tighter padding. The content is identical, just scaled down a notch
   so nothing on a phone screen reads as an oversized desktop leftover. */
@media (max-width: 599px) {
  .svc-card { padding: 26px 22px 22px; }
  .svc-icon { width: 40px; height: 40px; margin-bottom: 18px; }
  .svc-card h3 { font-size: 1.12rem; }

  .shot img { aspect-ratio: 4 / 3; }
  .shot.tall img { aspect-ratio: 4 / 5; }
  .rel-card .shot img { aspect-ratio: 4 / 3; }
  .member .shot img { aspect-ratio: 4 / 5; }

  .review { flex-basis: 258px; padding: 24px 22px; }
  .reviews-track { gap: 12px; }
  .stars svg { width: 15px; height: 15px; }

  .price-card { padding: 28px 22px; }
  .cred { padding: 20px; gap: 13px; }
  .cred svg { width: 24px; height: 24px; }
  .scope-item { padding: 22px 20px; }
  .scope-item svg { width: 22px; height: 22px; margin-bottom: 12px; }
}

@media (min-width: 600px) {
  .trustbar-grid { grid-template-columns: repeat(4, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-foot { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-bot { flex-direction: row; align-items: center; justify-content: space-between; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  .scope-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 720px) {
  body { font-size: 17.5px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .review { flex-basis: 360px; }
  .reviews-track { gap: 20px; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .rel-grid { grid-template-columns: repeat(3, 1fr); }
  .rel-card { flex-direction: column; align-items: stretch; gap: 14px; padding: 0 0 20px; }
  .rel-card .shot { width: 100%; }
  .rel-card .shot img { aspect-ratio: 3 / 2; }
  .rel-card .rel-text { padding-inline: 20px; }
  .trustbar-grid { margin-inline: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); column-gap: 40px; }
  .step:nth-child(2) { border-top: 1px solid var(--line); }
  .step:nth-last-child(2):nth-child(odd) { border-bottom: 1px solid var(--line); }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-phone { display: inline-flex; }
  .burger { display: none; }
  .callbar { display: none; }
  .scroll-hint { display: flex; }

  .split { grid-template-columns: 1fr 1fr; }
  .split.wide-copy { grid-template-columns: 1.05fr 0.95fr; }
  .split.reverse .split-media { order: 2; }

  .cta-split { grid-template-columns: 1.1fr 0.9fr; gap: 60px; }
  .svc-layout { grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.95fr); align-items: start; }
  .svc-aside { position: sticky; top: 96px; }

  .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 48px; }
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .review { flex-basis: 400px; }
  .scope-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); column-gap: 32px; }
  .step { border-bottom: 1px solid var(--line); }
}

@media (min-width: 1180px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --------------------------------------------------------------------------
   27. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  [data-split] .word { opacity: 1 !important; transform: none !important; }
  .img-reveal::after { transform: scaleX(0) !important; }
  .img-reveal img { transform: none !important; }
  .hero-media img { animation: none; }
}

/* --------------------------------------------------------------------------
   28. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .callbar, .drawer, .cta-band, .scroll-hint { display: none !important; }
  body { color: #000; font-size: 11pt; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .section { padding-block: 18pt; }
}
