:root {
  --ink: #0f1113;
  --muted: #6f7479;
  --paper: #17191c;
  --white: #ffffff;
  --line: #2b2f33;
  --blue: #202326;
  --blue-dark: #0a0b0c;
  --gold: #8d9298;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

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

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

.scroll-progress {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: rgba(5, 6, 7, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.site-header::before {
  display: none;
}

.page-header {
  background: rgba(5, 6, 7, 0.96);
}

.page-header::before {
  display: none;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: none;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-weight: 750;
}

.nav a,
.project-link {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.nav a:hover,
.project-link:hover {
  color: var(--white);
}

.project-link {
  justify-self: end;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--white);
  font-weight: 800;
}

.nav-urgent,
.urgent-link {
  color: var(--white) !important;
}

.nav-urgent {
  display: none;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
}

.urgent-link {
  padding: 11px 14px;
  color: var(--ink) !important;
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.12);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-media video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media video,
.work-card img {
  object-fit: cover;
}

.hero-video {
  z-index: 1;
}

.hero-video:empty {
  display: none;
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(9, 17, 25, 0.62) 48%, rgba(9, 17, 25, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(9, 17, 25, 0.08) 42%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(880px, calc(100% - 40px));
  margin-left: clamp(20px, 8vw, 120px);
  padding-top: 90px;
}

.hero-copy {
  width: min(760px, 100%);
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.86);
}

.kicker,
.section-label {
  margin: 0 0 18px;
  color: #c7cbd0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: 68px;
  line-height: 1;
  letter-spacing: 0;
}

.hero-inner p:not(.kicker) {
  max-width: 650px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 900;
}

.button.light {
  color: var(--ink);
  background: var(--white);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.button.dark {
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
}

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

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 28px clamp(20px, 7vw, 104px);
  background: #000000;
  border-bottom: 1px solid #2b2f33;
  border-top: 1px solid #2b2f33;
}

.quick-facts div,
.quick-facts a {
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 24px;
  color: var(--white);
  background: #0f1113;
  border: 1px solid #2b2f33;
  border-radius: var(--radius);
}

.quick-facts span {
  color: #aeb4ba;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.switchboard-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  color: #c7cbd0;
  font-size: 13px;
}

.switchboard-inline strong {
  color: #ffffff;
}

.switchboard-inline > span:last-child {
  color: #9da3aa;
}

.switchboard-dot {
  display: inline-block;
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8d949b;
  box-shadow: 0 0 0 4px rgba(141, 148, 155, 0.13);
}

.switchboard-label {
  display: flex;
  align-items: center;
  gap: 9px;
}

.switchboard-label b {
  font: inherit;
}

[data-switchboard-card].is-open .switchboard-dot,
.switchboard-inline.is-open .switchboard-dot {
  background: #42d17a;
  box-shadow: 0 0 0 4px rgba(66, 209, 122, 0.15);
}

[data-switchboard-card].is-open .switchboard-label,
.switchboard-inline.is-open strong {
  color: #79e69f;
}

[data-switchboard-card].is-closed .switchboard-dot,
.switchboard-inline.is-closed .switchboard-dot {
  background: #aeb4ba;
}

.quick-facts .urgent-live-card {
  background: #111315;
  border-color: #30343a;
}

.quick-facts .urgent-live-card:hover {
  background: #202326;
  border-color: #50565d;
}

.quick-facts .urgent-live-card.is-urgent-active {
  background:
    linear-gradient(135deg, rgba(68, 224, 124, 0.12), rgba(68, 224, 124, 0.025)),
    #101612;
  border-color: rgba(72, 224, 127, 0.48);
  box-shadow: inset 0 0 28px rgba(61, 210, 113, 0.045);
}

.quick-facts .urgent-live-card.is-urgent-active:hover {
  background:
    linear-gradient(135deg, rgba(68, 224, 124, 0.18), rgba(68, 224, 124, 0.055)),
    #121b15;
  border-color: #59df88;
}

.urgent-live-card .switchboard-dot {
  background: #aeb4ba;
  box-shadow: 0 0 0 4px rgba(174, 180, 186, 0.13);
}

.urgent-live-card .switchboard-label {
  color: #aeb4ba;
}

.urgent-live-card.is-urgent-active .switchboard-dot {
  background: #42d17a;
  box-shadow: 0 0 0 4px rgba(66, 209, 122, 0.15), 0 0 18px rgba(66, 209, 122, 0.58);
}

.urgent-live-card.is-urgent-active .switchboard-label,
.urgent-live-card.is-urgent-active small {
  color: #79e69f;
}

.urgent-live-card small {
  display: block;
  min-height: 18px;
  color: #aeb4ba;
  font-size: 12px;
  font-weight: 900;
}

.quick-facts strong {
  font-size: 22px;
  line-height: 1.18;
}

.quick-facts p {
  margin: 0;
  color: #aeb4ba;
}

.quick-facts a:hover {
  background: #202326;
  border-color: #50565d;
}

.dark-facts strong {
  color: var(--white);
}

.services-section {
  padding: 112px clamp(20px, 7vw, 104px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 34%),
    #000000;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-intro {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin-bottom: 38px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.section-intro h2 {
  margin-bottom: 0;
  font-size: 54px;
  line-height: 1.04;
}

.section-intro p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: #b7bcc2;
  font-size: 18px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: transparent;
}

.service-strip article {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 320px;
  padding: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.015)),
    #0f1113;
  border: 1px solid #30343a;
  border-radius: var(--radius);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.22);
  isolation: isolate;
}

.service-strip article::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 0;
  width: 72px;
  height: 3px;
  background: var(--white);
}

.service-strip article::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: min(70%, 320px);
  aspect-ratio: 1;
  background: url("rvm-reindeer.png") center / contain no-repeat;
  opacity: 0.055;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.service-strip article span {
  display: inline-flex;
  width: fit-content;
  padding: 8px 10px;
  color: #0f1113;
  background: var(--white);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-strip h3 {
  margin-bottom: 0;
  font-size: 34px;
  line-height: 1.05;
}

.service-strip p {
  max-width: 520px;
  min-height: auto;
  margin-bottom: 2px;
  color: #b7bcc2;
  font-size: 17px;
}

.service-strip ul {
  display: grid;
  gap: 8px;
  margin: 6px 0 8px;
  padding: 0;
  list-style: none;
}

.service-strip li {
  position: relative;
  padding-left: 18px;
  color: #d8dce0;
  font-size: 15px;
}

.service-strip li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
}

.service-strip a,
.service-contact-trigger {
  align-self: end;
  color: var(--white);
  font-weight: 900;
}

.service-contact-trigger {
  width: fit-content;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.service-contact-trigger:hover {
  text-decoration: underline;
}

.project-section,
.certifications,
.home-gallery,
.work-gallery,
.partner-marquee,
.portfolio-hero,
.urgent-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.project-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  padding: 104px clamp(20px, 7vw, 104px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 42%),
    #08090a;
  border-bottom: 1px solid var(--line);
}

.project-section::after,
.certifications::after,
.home-gallery::after,
.work-gallery::after,
.partner-marquee::after,
.portfolio-hero::after,
.urgent-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(52vw, 660px);
  aspect-ratio: 1;
  background: url("rvm-reindeer.png") center / contain no-repeat;
  opacity: 0.045;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.certifications::after,
.home-gallery::after,
.work-gallery::after,
.partner-marquee::after {
  width: min(46vw, 560px);
  opacity: 0.035;
}

.portfolio-hero::after,
.urgent-hero::after {
  width: min(54vw, 720px);
  opacity: 0.055;
}

.project-copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
}

.project-copy p:not(.section-label) {
  max-width: 680px;
  color: #c7cbd0;
  font-size: 19px;
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.project-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.project-highlights article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  align-content: start;
  padding: 26px;
  background: #111315;
  border: 1px solid #30343a;
  border-radius: var(--radius);
}

.project-highlights span {
  grid-row: span 2;
  color: #aeb4ba;
  font-weight: 900;
}

.project-highlights h3 {
  margin: 0;
  font-size: 25px;
}

.project-highlights p {
  margin: 0;
  color: #b7bcc2;
}

.customer-types {
  padding: 104px clamp(20px, 7vw, 104px);
  color: var(--white);
  background: #0f1113;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.type-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 220px;
  padding: 28px;
  background: #000000;
  border: 1px solid #2b2f33;
  border-radius: var(--radius);
}

.type-grid span {
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
}

.type-grid p {
  margin: 0;
  color: #b7bcc2;
}

.service-area-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: 76px clamp(20px, 7vw, 104px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), transparent 44%),
    #050505;
  border-top: 1px solid var(--line);
  isolation: isolate;
}

.service-area-strip::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  background: url("rvm-reindeer.png") center / contain no-repeat;
  opacity: 0.035;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.service-area-strip h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.04;
}

.service-area-strip p:not(.section-label) {
  max-width: 860px;
  color: #b7bcc2;
  font-size: 18px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.area-tags span {
  padding: 10px 13px;
  color: var(--white);
  background: #111315;
  border: 1px solid #30343a;
  border-radius: var(--radius);
  font-weight: 900;
}

.service-area-map {
  position: relative;
  aspect-ratio: 720 / 430;
  min-height: 360px;
  overflow: hidden;
  background:
    radial-gradient(circle at 60% 48%, rgba(255, 255, 255, 0.09), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    #0d0f11;
  border: 1px solid #30343a;
  border-radius: var(--radius);
}

.service-area-map img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
}

.emergency-band {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 56px clamp(20px, 7vw, 104px);
  color: var(--white);
  background: #17191c;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.emergency-band h2 {
  margin-bottom: 12px;
  font-size: 42px;
  line-height: 1.05;
}

.emergency-band p:not(.section-label) {
  max-width: 720px;
  margin: 0;
  color: #b7bcc2;
  font-size: 18px;
}

.emergency-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.urgent-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 420px);
  gap: clamp(34px, 8vw, 104px);
  align-items: center;
  min-height: 82vh;
  overflow: hidden;
  padding: 170px clamp(20px, 7vw, 104px) 88px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07), transparent 48%),
    #000000;
  border-bottom: 1px solid var(--line);
}

.urgent-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.urgent-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 78% 46%, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.72) 58%, rgba(0, 0, 0, 0.62));
}

.urgent-hero > div:not(.urgent-shade) {
  position: relative;
  z-index: 2;
}

.urgent-hero h1 {
  max-width: 920px;
  margin-bottom: 24px;
}

.urgent-hero p:not(.kicker) {
  max-width: 680px;
  color: #d8dce0;
  font-size: 21px;
}

.urgent-panel {
  display: grid;
  gap: 14px;
  padding: 32px;
  background: #111315;
  border: 1px solid #2b2f33;
  border-radius: var(--radius);
}

.urgent-panel span {
  color: #aeb4ba;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.urgent-panel strong {
  color: var(--white);
  font-size: 36px;
  line-height: 1;
}

.urgent-panel p {
  margin: 0;
  color: #b7bcc2;
}

.urgent-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(20px, 7vw, 104px);
  color: var(--white);
  background: #000000;
  border-bottom: 1px solid var(--line);
}

.urgent-steps article {
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: 34px;
  background: #0f1113;
  border: 1px solid #2b2f33;
  border-radius: var(--radius);
}

.urgent-steps span {
  margin-bottom: 26px;
  color: #aeb4ba;
  font-weight: 900;
}

.urgent-steps h2 {
  margin-bottom: 12px;
  font-size: 30px;
}

.urgent-pricing {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  padding: 78px clamp(20px, 7vw, 104px);
  color: var(--white);
  background: #050505;
  border-bottom: 1px solid var(--line);
}

.urgent-pricing h2 {
  max-width: 660px;
  margin-bottom: 14px;
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.04;
}

.urgent-pricing p:not(.section-label) {
  max-width: 680px;
  color: #b7bcc2;
  font-size: 18px;
}

.urgent-pricing-grid {
  display: grid;
  gap: 12px;
}

.urgent-pricing-grid article {
  padding: 26px;
  background: #111315;
  border: 1px solid #30343a;
  border-radius: var(--radius);
}

.urgent-pricing-grid span {
  display: block;
  margin-bottom: 10px;
  color: #aeb4ba;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.urgent-pricing-grid h3 {
  margin-bottom: 8px;
  font-size: 25px;
}

.urgent-pricing-grid p {
  margin: 0;
  color: #b7bcc2;
}

.urgent-steps p {
  margin: 0;
  color: #b7bcc2;
}

.urgent-contact {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #000000;
}

.urgent-hero::after {
  z-index: 1;
  width: min(58vw, 780px);
  opacity: 0.07;
}

.urgent-pricing,
.bottom-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.urgent-pricing::after,
.urgent-contact::after,
.bottom-cta::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: min(50vw, 620px);
  aspect-ratio: 1;
  background: url("rvm-reindeer.png") center / contain no-repeat;
  opacity: 0.035;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.urgent-contact::after {
  left: 24%;
  opacity: 0.028;
}

.urgent-pricing > *,
.urgent-contact > *,
.bottom-cta > * {
  position: relative;
  z-index: 1;
}

.competence-teaser {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 76px clamp(20px, 7vw, 104px);
  color: var(--white);
  background: #050505;
  border-bottom: 1px solid var(--line);
}

.competence-teaser h2 {
  max-width: 860px;
  margin-bottom: 12px;
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.04;
}

.competence-teaser p:not(.section-label) {
  max-width: 760px;
  color: #b7bcc2;
  font-size: 18px;
}

.competence-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.competence-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(58vw, 720px);
  aspect-ratio: 1;
  background: url("rvm-reindeer.png") center / contain no-repeat;
  opacity: 0.055;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.competence-page {
  padding-top: 86px;
}

.competence-page .partners-heading {
  max-width: 820px;
}

.competence-page .partners-heading p:not(.section-label) {
  color: #b7bcc2;
  font-size: 18px;
}

.competence-grid a {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  min-height: 168px;
  padding: 24px;
  color: #050505;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.competence-grid a:hover,
.competence-grid a:focus-visible {
  transform: translateY(-3px);
  border-color: #ffffff;
  background: #f4f5f6;
  outline: none;
}

.competence-grid img {
  width: 118px;
  height: 118px;
  padding: 16px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid #e2e5e8;
  border-radius: 999px;
}

.competence-grid span {
  margin: 0;
  color: #111315;
  text-align: center;
}

.competence-grid .svenskt-vatten-card img {
  padding: 0;
  object-fit: cover;
}

.site-consent[hidden] {
  display: none !important;
}

.site-consent {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.site-consent-card {
  width: min(620px, 100%);
  padding: 30px;
  background: #0f1113;
  border: 1px solid #30343a;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.site-consent-card h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.04;
}

.site-consent-card p {
  color: #c7cbd0;
}

.site-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.site-consent-card a {
  color: var(--white);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.why {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(40px, 8vw, 110px);
  padding: 104px clamp(20px, 7vw, 104px);
  color: var(--white);
  background: #0f1113;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-copy h2,
.partners-heading h2,
.about-copy h2,
.contact h2 {
  margin-bottom: 24px;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: 0;
}

.why-copy p,
.about-copy p {
  max-width: 620px;
  margin-bottom: 30px;
  color: #b7bcc2;
  font-size: 18px;
}

.why-points {
  display: grid;
  gap: 12px;
}

.why-points div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 6px 18px;
  padding: 22px;
  background: #17191c;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.why-points span {
  grid-row: span 2;
  color: #aeb4ba;
  font-weight: 900;
}

.why-points strong {
  font-size: 24px;
}

.why-points p {
  margin-bottom: 0;
  color: #b7bcc2;
}

.showcase,
.partners {
  padding: 104px clamp(20px, 7vw, 104px);
  color: var(--white);
  background: #000000;
  border-top: 1px solid var(--line);
}

.partners-heading {
  display: grid;
  grid-template-columns: minmax(280px, 620px) 1fr;
  margin-bottom: 30px;
}

.carousel-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}

.text-link {
  color: var(--white);
  font-weight: 900;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-controls button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: #050505;
  border: 1px solid #3a3f45;
  border-radius: 50%;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.carousel-controls button:hover {
  color: var(--ink);
  background: var(--white);
  transform: translateY(-2px);
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 34vw);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.services-section,
.contact,
.home-gallery,
.certifications {
  scroll-margin-top: 120px;
}

.project-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #111315, #1b1e22);
  scroll-snap-align: start;
  border: 1px solid var(--line);
}

.project-card.large {
  grid-column: span 1;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: contain;
  padding: 34px 34px 146px;
  filter: saturate(0.9) contrast(1.02);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.client-grid article {
  display: grid;
  gap: 18px;
  align-content: center;
  min-height: 230px;
  padding: 28px;
  background: #111315;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.client-grid img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.client-grid span {
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.work-gallery {
  padding: 104px clamp(20px, 7vw, 104px);
  color: var(--white);
  background: #000000;
  border-top: 1px solid var(--line);
}

.home-gallery {
  padding: 104px clamp(20px, 7vw, 104px);
  color: var(--white);
  background: #0f1113;
  border-top: 1px solid var(--line);
}

.home-gallery .carousel-top h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1.03;
}

.home-gallery .text-link {
  display: inline-flex;
  margin-top: 18px;
}

.partner-marquee {
  overflow: hidden;
  padding: 86px 0;
  color: var(--white);
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.partner-marquee-heading {
  max-width: 1180px;
  margin: 0 auto 30px;
  padding: 0 clamp(20px, 7vw, 104px);
}

.partner-marquee-heading h2 {
  max-width: 720px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

.partner-marquee-window {
  position: relative;
  overflow: hidden;
}

.partner-marquee-window::before,
.partner-marquee-window::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(40px, 10vw, 160px);
  pointer-events: none;
}

.partner-marquee-window::before {
  left: 0;
  background: linear-gradient(90deg, #050505, rgba(5, 5, 5, 0));
}

.partner-marquee-window::after {
  right: 0;
  background: linear-gradient(270deg, #050505, rgba(5, 5, 5, 0));
}

.partner-marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 6px 16px;
  animation: partner-marquee 30s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.partner-marquee figure {
  display: grid;
  place-items: center;
  flex: 0 0 220px;
  height: 124px;
  margin: 0;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.partner-marquee img {
  max-width: 100%;
  max-height: 86px;
  object-fit: contain;
}

.partner-marquee figure.partner-logo-wide {
  flex-basis: 270px;
  padding: 10px;
}

.partner-marquee figure.partner-logo-wide img {
  max-height: 108px;
}

.partner-marquee figure.partner-hantify {
  flex-basis: 300px;
}

.partner-marquee figure.partner-hantify img {
  max-height: 112px;
}

.partner-marquee figure.partner-dark {
  background: #090a0b;
}

@keyframes partner-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 8px), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-marquee-track {
    animation-duration: 64s;
  }
}

.portfolio-gallery {
  background: #000000;
}

.work-track {
  grid-auto-columns: minmax(300px, 30vw);
}

.work-card {
  min-height: 420px;
  overflow: hidden;
  background: #0f1113;
  border-radius: var(--radius);
  border: 1px solid #2b2f33;
  scroll-snap-align: start;
}

.work-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  background: #000000;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(9, 17, 25, 0.92), rgba(9, 17, 25, 0.72) 34%, rgba(9, 17, 25, 0.04) 68%),
    linear-gradient(90deg, rgba(9, 17, 25, 0.06), rgba(9, 17, 25, 0));
  pointer-events: none;
}

.project-card div {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 26px;
  color: var(--white);
}

.project-card span {
  display: block;
  margin-bottom: 8px;
  color: #c9cdd1;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card h3 {
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 1.05;
}

.project-card p {
  max-width: 440px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.logo-band {
  overflow: hidden;
  padding: 28px 0;
  background: #0f1113;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-marquee {
  display: flex;
  gap: 18px;
  width: max-content;
  padding-inline: clamp(20px, 7vw, 104px);
  animation: logoSlide 34s linear infinite;
}

.logo-band:hover .logo-marquee {
  animation-play-state: paused;
}

.logo-marquee img {
  width: 170px;
  height: 84px;
  object-fit: contain;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  mix-blend-mode: multiply;
}

@keyframes logoSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-35%);
  }
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.logo-grid figure {
  display: grid;
  place-items: center;
  min-height: 176px;
  margin: 0;
  padding: 22px;
  background: var(--paper);
}

.logo-grid img {
  width: 100%;
  max-width: 190px;
  max-height: 96px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.about {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
  background: #000000;
  color: var(--white);
  border-top: 1px solid #2b2f33;
  border-bottom: 1px solid #2b2f33;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  align-self: center;
  max-width: 980px;
  padding: 96px clamp(20px, 7vw, 104px);
}

.about-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about .button.light {
  background: var(--white);
  color: var(--ink);
}

.about .button.ghost {
  color: var(--white);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 8vw, 104px);
  padding: 104px clamp(20px, 7vw, 104px);
  color: var(--white);
  background: #000000;
  border-top: 1px solid var(--line);
}

.seo-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(34px, 8vw, 104px);
  padding: 104px clamp(20px, 7vw, 104px);
  color: var(--white);
  background: #000000;
  border-top: 1px solid var(--line);
}

.compact-seo {
  padding-block: 62px;
  background: #0f1113;
}

.seo-section h2 {
  margin-bottom: 0;
  font-size: 38px;
  line-height: 1.03;
}

.seo-copy p {
  max-width: 820px;
  margin-bottom: 0;
  color: #b7bcc2;
  font-size: 18px;
}

.contact > div > p:not(.section-label) {
  max-width: 560px;
  color: #b7bcc2;
  font-size: 18px;
}

.invoice-info {
  display: grid;
  gap: 10px;
  max-width: 640px;
  margin-top: 28px;
  padding: 22px;
  color: #d8dce0;
  background: #111315;
  border: 1px solid #2b2f33;
  border-radius: var(--radius);
}

.invoice-info summary {
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.invoice-info h3 {
  margin: 0;
  font-size: 22px;
}

.invoice-info p {
  margin: 0;
  color: #b7bcc2;
  font-size: 15px;
}

.invoice-info a,
.invoice-info strong {
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #2b2f33;
  border: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: #111315;
  border: 1px solid #2b2f33;
  border-radius: var(--radius);
}

.contact-form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 0;
  padding: 18px;
  border: 1px solid #2b2f33;
  border-radius: var(--radius);
}

.contact-form legend {
  padding: 0 8px;
  color: #d8dce0;
  font-weight: 900;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #d8dce0;
  font-size: 14px;
  font-weight: 800;
}

.contact-form fieldset label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--white);
  background: #000000;
  border: 1px solid #3a3f45;
  border-radius: var(--radius);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input[type="radio"] {
  width: auto;
  min-height: auto;
  accent-color: var(--white);
}

.contact-form input[type="checkbox"] {
  width: auto;
  min-height: auto;
  accent-color: var(--white);
}

.file-upload {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 14px;
  align-items: center;
  padding: 18px;
  background: #090a0b;
  border: 1px solid #3a3f45;
  border-radius: var(--radius);
}

.file-upload-title {
  grid-column: 1 / -1;
  color: #d8dce0;
  font-size: 14px;
  font-weight: 900;
}

.contact-form .file-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.file-upload-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 16px;
  color: var(--ink) !important;
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900 !important;
}

.file-upload-button:hover {
  background: #dfe2e5;
}

.file-upload-input:focus-visible + .file-upload-button {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.file-upload-status {
  min-width: 0;
  overflow: hidden;
  color: #b7bcc2;
  font-size: 14px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-upload.has-files {
  border-color: #737a82;
}

.file-upload.has-files .file-upload-status {
  color: var(--white);
}

.file-upload small {
  grid-column: 1 / -1;
  color: #8f969e;
  font-size: 12px;
}

.file-upload-previews {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 10px;
  padding-top: 6px;
}

.file-upload-previews[hidden] {
  display: none !important;
}

.file-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: #151719;
  border: 1px solid #343941;
  border-radius: var(--radius);
}

.file-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-preview-pdf {
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.gdpr-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  color: #c7cbd0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.privacy-note {
  margin: -2px 0 2px;
  padding: 13px 14px;
  color: #aeb4ba;
  background: #111315;
  border-left: 3px solid #ffffff;
  font-size: 13px;
  line-height: 1.55;
}

.privacy-note a {
  color: #ffffff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-form [hidden] {
  display: none !important;
}

.form-note {
  margin: 0;
  color: #aeb4ba;
  font-size: 14px;
}

.smart-form-helper {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: #000000;
  border: 1px solid #3a3f45;
  border-radius: var(--radius);
}

.smart-form-helper[hidden] {
  display: none !important;
}

.smart-form-helper span {
  color: #d8dce0;
  font-size: 13px;
  font-weight: 900;
}

.smart-form-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.smart-form-suggestions button {
  min-height: 38px;
  padding: 9px 11px;
  color: var(--white);
  background: #17191c;
  border: 1px solid #3a3f45;
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.smart-form-suggestions button:hover {
  color: var(--ink);
  background: var(--white);
}

.certifications {
  padding: 92px clamp(20px, 7vw, 104px);
  color: var(--white);
  background: #000000;
  border-top: 1px solid var(--line);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.cert-grid article {
  display: grid;
  grid-template-rows: 118px auto;
  gap: 12px;
  place-items: center;
  height: 204px;
  padding: 18px;
  text-align: left;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.cert-grid img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  filter: none;
}

.cert-grid span {
  width: 100%;
  color: #17191c;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.cert-mark {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  color: #ffffff;
  background: #111315;
  border: 4px solid #111315;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 900;
}

.area-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 80px);
  padding: 92px clamp(20px, 7vw, 104px);
  color: var(--white);
  background: #0f1113;
  border-top: 1px solid var(--line);
}

.area-section h2 {
  margin-bottom: 18px;
  font-size: 46px;
  line-height: 1.04;
}

.area-section p:not(.section-label) {
  max-width: 620px;
  color: #b7bcc2;
  font-size: 18px;
}

.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.area-links a {
  padding: 11px 14px;
  color: var(--white);
  border: 1px solid #3a3f45;
  border-radius: var(--radius);
  font-weight: 900;
}

.service-map {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    #050607;
  border: 1px solid #2b2f33;
  border-radius: var(--radius);
}

.service-map::before {
  content: "";
  position: absolute;
  inset: 34px;
  opacity: 0.38;
  background:
    linear-gradient(90deg, transparent 49.6%, #2b2f33 50%, transparent 50.4%),
    linear-gradient(0deg, transparent 49.6%, #2b2f33 50%, transparent 50.4%);
  background-size: 72px 72px;
}

.map-ring {
  position: absolute;
  left: 13%;
  top: 15%;
  width: 70%;
  height: 68%;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  transform: rotate(-12deg);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 48px rgba(255, 255, 255, 0.08);
}

.map-ring::after {
  content: "Prioriterat område";
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%) rotate(12deg);
  padding: 8px 10px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.map-dot,
.map-note {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.map-dot::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--white);
  border: 3px solid #000000;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--white);
}

.map-dot.sundsvall {
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  font-size: 18px;
}

.map-dot.sundsvall::before {
  width: 16px;
  height: 16px;
}

.map-dot.ostersund {
  left: 17%;
  top: 29%;
}

.map-dot.harnosand {
  right: 13%;
  top: 35%;
}

.map-dot.soderhamn {
  right: 22%;
  bottom: 21%;
}

.map-note {
  color: #aeb4ba;
  font-size: 12px;
  text-transform: uppercase;
}

.map-note.north {
  right: 8%;
  top: 11%;
}

.map-note.south {
  left: 12%;
  bottom: 10%;
}

.contact-grid a,
.contact-grid p {
  display: grid;
  gap: 8px;
  min-height: 132px;
  margin: 0;
  padding: 26px;
  background: #111315;
  font-size: 20px;
  font-weight: 850;
}

.contact-grid span {
  color: #aeb4ba;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.subhero {
  padding: 170px clamp(20px, 7vw, 104px) 92px;
  color: var(--white);
  background: #000000;
  border-bottom: 1px solid #2b2f33;
}

.team-hero {
  position: relative;
  display: block;
  overflow: hidden;
  background: #000000;
  isolation: isolate;
}

.team-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: min(62vw, 760px);
  aspect-ratio: 1;
  background: url("rvm-reindeer.png") center / contain no-repeat;
  opacity: 0.065;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.subhero h1 {
  max-width: 980px;
}

.subhero p:not(.kicker) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  padding: 96px clamp(20px, 7vw, 104px);
  background: #000000;
}

.portfolio-card {
  position: relative;
  grid-column: span 3;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.portfolio-card.feature {
  grid-column: span 3;
  min-height: 0;
}

.portfolio-card:nth-last-child(2) {
  grid-column: span 3;
}

.portfolio-card:last-child {
  grid-column: span 3;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  padding: 0;
  filter: saturate(0.9) contrast(1.02);
  mix-blend-mode: normal;
}

.portfolio-card.feature img {
  min-height: 0;
  padding: 0;
}

.portfolio-gallery .partners-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 760px;
}

.portfolio-gallery .partners-heading h2 {
  margin: 0;
}

.portfolio-card::after {
  content: "Visa info";
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.portfolio-card:hover,
.portfolio-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.32);
  background: #f4f5f6;
  outline: none;
}

.portfolio-card:hover::after,
.portfolio-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-card div {
  display: none;
}

.portfolio-card span,
.team-card span {
  display: block;
  margin-bottom: 8px;
  color: #aeb4ba;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-card h2 {
  margin-bottom: 8px;
  font-size: 34px;
  line-height: 1.05;
}

.portfolio-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.portfolio-placeholder {
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 22px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #111315;
  text-decoration: none;
}

.portfolio-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("rvm-reindeer.png") center / 58% no-repeat;
  opacity: 0.055;
  pointer-events: none;
}

.portfolio-placeholder::after {
  display: none;
}

.portfolio-placeholder:hover,
.portfolio-placeholder:focus-visible {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.035)),
    #15181b;
}

.portfolio-placeholder span {
  margin: 0;
  color: #aeb4ba;
}

.portfolio-placeholder strong {
  position: relative;
  z-index: 1;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.05;
}

.portfolio-placeholder p {
  position: relative;
  z-index: 1;
  color: #b7bcc2;
  font-size: 15px;
}

.project-modal[hidden] {
  display: none !important;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.project-modal-panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius);
  color: var(--white);
  background: #0c0d0f;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
}

.project-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.project-modal-panel h2 {
  margin: 8px 48px 16px 0;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
}

.project-modal-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.72;
}

.project-modal-gallery {
  margin-top: 24px;
}

.project-modal-gallery[hidden] {
  display: none !important;
}

.project-modal-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #020202;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.project-modal-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 140ms ease;
}

.project-gallery-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(8, 9, 10, 0.9);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.project-gallery-button:hover {
  color: #050505;
  background: #ffffff;
  transform: translateY(-50%) scale(1.04);
}

.project-gallery-prev {
  left: 14px;
}

.project-gallery-next {
  right: 14px;
}

.project-modal-gallery-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 10px;
  padding: 14px 16px;
  background: #15171a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.project-modal-gallery-meta span {
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.project-modal-gallery-meta p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.project-gallery-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 92px;
  gap: 8px;
  margin-top: 10px;
  padding: 4px 0 8px;
  overflow-x: auto;
  scrollbar-color: #686e75 #15171a;
}

.project-gallery-thumb {
  position: relative;
  width: 92px;
  height: 68px;
  padding: 0;
  overflow: hidden;
  background: #090a0b;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.58;
}

.project-gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-gallery-thumb:hover,
.project-gallery-thumb.is-active {
  border-color: #ffffff;
  opacity: 1;
}

.service-contact-modal[hidden] {
  display: none !important;
}

.service-contact-modal,
.terms-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
}

.service-contact-panel,
.terms-panel {
  position: relative;
  width: min(620px, 100%);
  padding: clamp(26px, 5vw, 44px);
  color: var(--white);
  background: #0c0d0f;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.54);
}

.service-contact-close,
.terms-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.terms-modal[hidden] {
  display: none !important;
}

.terms-panel h2 {
  margin: 8px 48px 16px 0;
  font-size: clamp(30px, 5vw, 46px);
}

.terms-panel > p:last-child {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.service-contact-profile {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-right: 46px;
  margin-bottom: 24px;
}

.service-contact-profile .profile-photo {
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  margin: 0;
}

.service-contact-panel h2 {
  margin: 6px 0 0;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1;
}

.service-contact-panel > p {
  max-width: 520px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.service-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.anton-profile img {
  object-position: 50% 24%;
}

.hampus-profile img {
  object-position: 50% 28%;
}

.kevin-profile img {
  object-position: 50% 34%;
}

.alvin-profile img {
  object-position: 50% 30%;
}

.cta-panel {
  padding: 82px clamp(20px, 7vw, 104px);
  color: var(--white);
  background: var(--ink);
}

.cta-panel h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: 48px;
  line-height: 1.05;
}

.cta-panel p:not(.section-label) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.bottom-cta {
  padding: 64px clamp(20px, 7vw, 104px);
  color: var(--white);
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bottom-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
}

.bottom-cta h2 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
}

.bottom-cta p:not(.section-label) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.bottom-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 96px clamp(20px, 7vw, 104px);
  background: #000000;
}

.team-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  align-content: stretch;
  min-height: 340px;
  padding: 30px;
  color: var(--white);
  background: #0f1113;
  border: 1px solid #24282d;
  border-radius: var(--radius);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.team-card:hover {
  border-color: #d9dde2;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.leader-card {
  background: #15181c;
}

.avatar {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-bottom: 34px;
  color: var(--white);
  background: linear-gradient(135deg, #3a3f45, var(--ink));
  border-radius: 50%;
  font-size: 25px;
  font-weight: 900;
}

.profile-photo {
  width: 104px;
  height: 104px;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid #3a3f45;
  background: #000000;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-profile img {
  object-fit: contain;
  padding: 12px;
  background: #000000;
}

.clas-profile img {
  object-position: 56% 28%;
  transform: scale(1.32);
}

.profile-photo-placeholder {
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #3a3f45, #000000);
  font-size: 30px;
  font-weight: 900;
}

.team-card h2 {
  margin-bottom: 14px;
  font-size: 27px;
  line-height: 1.08;
}

.team-card p {
  color: #b7bcc2;
}

.team-card a {
  align-self: end;
  color: var(--white);
  font-weight: 900;
}

.team-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  align-self: end;
}

.team-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 12px;
  color: var(--white);
  background: #050505;
  border: 1px solid #343941;
  border-radius: var(--radius);
  font-size: 13px;
  line-height: 1.1;
}

.team-links a:hover {
  color: var(--ink);
  background: var(--white);
}

.linkedin-button,
.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink) !important;
  background: var(--white);
  border-radius: var(--radius);
}

.linkedin-button {
  width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  color: var(--white) !important;
  background: #0a66c2;
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.linkedin-button span {
  transform: translateY(-1px);
}

.team-note {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 7vw, 88px);
  padding: 72px clamp(20px, 7vw, 104px);
  color: var(--white);
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.team-note h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
}

.team-note p:not(.section-label) {
  max-width: 720px;
  color: #c7cbd0;
  font-size: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: center;
  padding: 46px clamp(20px, 7vw, 104px);
  color: rgba(255, 255, 255, 0.74);
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer img {
  width: 180px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-footer button {
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.site-footer button:hover,
.site-footer a:hover {
  color: var(--white);
}

.mobile-cta {
  position: fixed;
  z-index: 60;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-height: 46px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  font-weight: 900;
}

.mobile-cta a:last-child {
  color: var(--white);
  background: #17191c;
  border: 1px solid #3a3f45;
}

.thanks-page {
  min-height: 100vh;
  color: var(--white);
  background: #000000;
}

.thanks-panel {
  display: grid;
  align-content: center;
  min-height: 100vh;
  max-width: 820px;
  padding: 80px clamp(20px, 7vw, 104px);
}

.thanks-panel img {
  width: 190px;
  margin-bottom: 46px;
  filter: brightness(0) invert(1);
}

.thanks-panel h1 {
  font-size: 58px;
}

.thanks-panel p:not(.section-label) {
  color: #b7bcc2;
  font-size: 20px;
}

.thanks-panel p a {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 14px 20px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: rgba(5, 6, 7, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.42);
  }

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

  .nav a {
    padding: 12px;
  }

  .nav-urgent {
    display: block;
  }

  .menu-button {
    display: block;
  }

  .project-link {
    display: none;
  }

  .service-strip,
  .quick-facts,
  .logo-grid,
  .client-grid,
  .cert-grid,
  .competence-grid,
  .type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why,
  .about,
  .contact,
  .partners-heading,
  .team-note,
  .competence-teaser,
  .bottom-cta-inner,
  .project-section,
  .service-area-strip,
  .section-intro,
  .team-hero,
  .emergency-band,
  .urgent-hero,
  .urgent-pricing,
  .seo-section,
  .area-section {
    grid-template-columns: 1fr;
  }

  .section-intro h2,
  .section-intro .section-label,
  .section-intro p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .project-section {
    gap: 30px;
  }

  .emergency-actions {
    justify-content: flex-start;
  }

  .bottom-cta-actions {
    justify-content: flex-start;
  }

  .urgent-steps {
    grid-template-columns: 1fr;
    padding-inline: clamp(20px, 7vw, 104px);
    gap: 12px;
    background: #000000;
  }

  .portfolio-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-card,
  .portfolio-card.feature {
    grid-column: span 1;
  }

  .portfolio-card:nth-last-child(2),
  .portfolio-card:last-child {
    grid-column: span 1;
  }

  .carousel-track {
    grid-auto-columns: minmax(300px, 72vw);
  }

  .work-track {
    grid-auto-columns: minmax(300px, 64vw);
  }

  h1 {
    font-size: 54px;
  }

  .why-copy h2,
  .partners-heading h2,
  .about-copy h2,
  .contact h2,
  .section-intro h2,
  .project-copy h2 {
    font-size: 44px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 10px 14px;
    gap: 12px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .hero-inner {
    width: calc(100% - 28px);
    margin: 0 14px;
    padding-top: 82px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-copy {
    padding: 0;
  }

  h1 {
    font-size: 34px;
    line-height: 1.02;
  }

  .hero-inner p:not(.kicker) {
    font-size: 18px;
  }

  .hero-actions,
  .bottom-cta-actions,
  .project-actions,
  .service-contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .quick-facts {
    padding: 18px 14px;
    gap: 10px;
  }

  .quick-facts a {
    min-height: auto;
    padding: 20px;
  }

  .services-section,
  .project-section,
  .service-area-strip,
  .home-gallery,
  .partner-marquee,
  .contact,
  .certifications,
  .bottom-cta,
  .work-gallery,
  .team-grid,
  .portfolio-grid,
  .urgent-steps {
    padding-left: 14px;
    padding-right: 14px;
  }

  .services-section,
  .project-section,
  .home-gallery,
  .partner-marquee,
  .contact,
  .certifications,
  .bottom-cta {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .service-strip,
  .quick-facts,
  .logo-grid,
  .client-grid,
  .type-grid,
  .contact-grid,
  .form-grid,
  .project-highlights,
  .portfolio-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .competence-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card,
  .portfolio-card.feature {
    grid-column: span 1;
  }

  .carousel-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .carousel-track {
    grid-auto-columns: 86vw;
  }

  .service-strip {
    gap: 12px;
  }

  .service-strip article {
    min-height: auto;
    padding: 18px;
  }

  .service-strip article::before {
    left: 20px;
    width: 56px;
  }

  .service-strip h3 {
    font-size: 24px;
  }

  .service-strip p,
  .service-strip li {
    font-size: 14px;
  }

  .service-strip ul {
    gap: 7px;
  }

  .project-highlights article {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .project-highlights span {
    grid-row: auto;
  }

  .area-tags {
    gap: 8px;
  }

  .area-tags span {
    padding: 9px 11px;
    font-size: 14px;
  }

  .partner-marquee {
    padding-left: 0;
    padding-right: 0;
  }

  .partner-marquee-heading {
    padding: 0 14px;
  }

  .partner-marquee figure {
    flex-basis: 170px;
    height: 98px;
    padding: 14px;
  }

  .partner-marquee img {
    max-height: 66px;
  }

  .partner-marquee figure.partner-logo-wide {
    flex-basis: 220px;
    padding: 8px;
  }

  .partner-marquee figure.partner-logo-wide img {
    max-height: 82px;
  }

  .contact-form {
    padding: 20px;
    gap: 14px;
  }

  .contact-form fieldset {
    padding: 14px;
  }

  .file-upload {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .file-upload-title,
  .file-upload small {
    grid-column: 1;
  }

  .file-upload-button {
    width: 100%;
  }

  .file-upload-status {
    white-space: normal;
  }

  .file-upload-previews {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cert-grid article {
    grid-template-rows: 92px auto;
    height: 164px;
    padding: 14px 10px;
  }

  .cert-grid img {
    width: 92px;
    height: 92px;
  }

  .cert-mark {
    width: 82px;
    height: 82px;
    font-size: 25px;
  }

  .site-footer {
    gap: 22px;
    padding-bottom: 104px;
  }

  .project-card,
  .project-card img,
  .work-card,
  .work-card img {
    min-height: 360px;
  }

  .work-card img {
    min-height: 280px;
    height: 280px;
  }

  .work-card {
    min-height: 280px;
  }

  .project-card img {
    padding: 26px 26px 150px;
  }

  .project-modal {
    align-items: end;
    padding: 14px;
  }

  .project-modal-panel {
    max-height: calc(100vh - 28px);
    overflow: auto;
  }

  .project-modal-media {
    aspect-ratio: 4 / 3;
  }

  .service-area-map {
    aspect-ratio: 4 / 5;
    min-height: 460px;
  }

  .service-area-map img {
    min-height: 460px;
    object-fit: contain;
  }

  .project-gallery-button {
    width: 42px;
    height: 42px;
  }

  .project-modal-gallery-meta {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .project-gallery-thumbs {
    grid-auto-columns: 78px;
  }

  .project-gallery-thumb {
    width: 78px;
    height: 58px;
  }

  .service-contact-modal,
  .terms-modal {
    align-items: end;
    padding: 14px;
  }

  .service-contact-panel,
  .terms-panel {
    max-height: calc(100vh - 28px);
    overflow: auto;
  }

  .service-contact-profile {
    align-items: flex-start;
  }

  .service-contact-profile .profile-photo {
    flex-basis: 76px;
    width: 76px;
    height: 76px;
  }

  .service-strip article {
    min-height: auto;
    padding: 18px;
  }

  .service-strip p {
    min-height: 0;
  }

  .team-grid {
    gap: 10px;
  }

  .team-card {
    min-height: auto;
    padding: 18px;
  }

  .profile-photo,
  .avatar {
    width: 70px;
    height: 70px;
    margin-bottom: 16px;
  }

  .team-card h2 {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .team-card p {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .team-links {
    gap: 8px;
  }

  .team-links a {
    min-width: 0;
    white-space: nowrap;
  }

  .team-links a:first-child {
    flex: 0 0 72px;
  }

  .team-links a:last-child {
    flex: 1 1 170px;
  }

  .why-copy h2,
  .partners-heading h2,
  .about-copy h2,
  .contact h2,
  .section-intro h2,
  .project-copy h2,
  .cta-panel h2,
  .team-note h2,
  .home-gallery .carousel-top h2,
  .seo-section h2,
  .area-section h2,
  .emergency-band h2,
  .urgent-steps h2 {
    font-size: 36px;
  }

  .urgent-hero h1 {
    font-size: 42px;
  }

  .why-points div {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-direction: column;
  }

  .service-map {
    min-height: 360px;
  }

  .map-ring {
    left: 8%;
    top: 18%;
    width: 82%;
    height: 62%;
  }

  .map-dot.ostersund {
    left: 8%;
  }

  .map-dot.harnosand {
    right: 7%;
  }

  .map-dot.soderhamn {
    right: 12%;
  }

  body {
    padding-bottom: 78px;
  }

  .mobile-cta {
    display: grid;
  }
}
